溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Python面向?qū)ο笾o態(tài)屬性、類方法與靜態(tài)方法分析

發(fā)布時(shí)間:2020-10-11 05:44:35 來源:腳本之家 閱讀:180 作者:我是馬克思小清新 欄目:開發(fā)技術(shù)

本文實(shí)例講述了Python面向?qū)ο笾o態(tài)屬性、類方法與靜態(tài)方法。分享給大家供大家參考,具體如下:

1. 靜態(tài)屬性:在函數(shù)前加@property,將函數(shù)邏輯”封裝“成數(shù)據(jù)屬性,外部直接調(diào)用函數(shù)名,如同調(diào)用屬性一樣。這個(gè)函數(shù)是可以調(diào)用對象和類的屬性的。

# -*- coding:utf-8 -*-
class Room:
  def __init__(self,name,owner,width,length):
    self.name = name
    self.owner = owner
    self.width = width
    self.length = length
  @property
  def cal_area(self):
    return self.length * self.width
r1 = Room('臥室','alex',100,1000)
print(r1.cal_area)
#r1.cal_area = 10  并不是真實(shí)的數(shù)據(jù)屬性,所以不可以在外部直接賦值。

運(yùn)行結(jié)果:

100000

2. 類方法:在類的方法前添加@classmethod,不需要實(shí)例化,直接調(diào)用類的該方法??梢栽L問類的數(shù)據(jù)屬性,但是不可以訪問對象的數(shù)據(jù)屬性。

# -*- coding:utf-8 -*-
class Room:
  style = '別墅'
  def __init__(self,name,owner,width,length):
    self.name = name
    self.owner = owner
    self.width = width
    self.length = length
  @property
  def cal_area(self):
    return self.length * self.width
  @classmethod
  def tell_style(cls):
    #這么寫會(huì)報(bào)錯(cuò),因?yàn)閚ame是對象的數(shù)據(jù)屬性,而類方法是不可以訪問實(shí)例的屬性的
    #print('%s的房間風(fēng)格是%s'%(cls.name,cls.style))
    print('房間的風(fēng)格是%s'%(cls.style))
#類方法的定義只是為了類去調(diào)用
Room.tell_style()

運(yùn)行結(jié)果:

房間的風(fēng)格是別墅

3. 靜態(tài)方法:在類的方法前加@staticmethod,該方法只是名義上的歸屬類管理,實(shí)例和類的屬性均不可以訪問,僅僅是類的工具包。

# -*- coding:utf-8 -*-
class Room:
  style = '別墅'
  def __init__(self,name,owner,width,length):
    self.name = name
    self.owner = owner
    self.width = width
    self.length = length
  @property
  def cal_area(self):
    return self.length * self.width
  @classmethod
  def tell_style(cls):
    #這么寫會(huì)報(bào)錯(cuò),因?yàn)閚ame是對象的數(shù)據(jù)屬性,而類方法是不可以訪問實(shí)例的屬性的
    #print('%s的房間風(fēng)格是%s'%(cls.name,cls.style))
    print('房間的風(fēng)格是%s'%(cls.style))
  @staticmethod
  def shower():
    print("洗澡")
  def test(self):
    print("這不是靜態(tài)方法,而且自動(dòng)生成參數(shù),必須要有實(shí)例")
Room.shower()
r1 = Room('別墅','alex',10,10)
r1.shower()  #這么調(diào)用也沒有問題
#報(bào)錯(cuò),因?yàn)椴皇庆o態(tài)方法,必須要實(shí)例化
Room.test()

運(yùn)行結(jié)果:

洗澡
洗澡
Traceback (most recent call last):
  File "C:\py\jb51PyDemo\src\Demo\test.py", line 26, in <module>
    Room.test()
TypeError: unbound method test() must be called with Room instance as first argument (got nothing instead)

更多關(guān)于Python相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《Python面向?qū)ο蟪绦蛟O(shè)計(jì)入門與進(jìn)階教程》、《Python數(shù)據(jù)結(jié)構(gòu)與算法教程》、《Python函數(shù)使用技巧總結(jié)》、《Python字符串操作技巧匯總》、《Python編碼操作技巧總結(jié)》及《Python入門與進(jìn)階經(jīng)典教程》

希望本文所述對大家Python程序設(shè)計(jì)有所幫助。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI