python物件導向詳解(上)

來源:互聯網
上載者:User

標籤:python   物件導向   

建立類

Python 類使用 class 關鍵字來建立。簡單的類的聲明可以是關鍵字後緊跟類名:

class ClassName(bases):    ‘class documentation string‘ #‘類文檔字串‘    class_suite #類體
執行個體化

通過類名後跟一對圓括弧執行個體化一個類

mc = MyClass() # instantiate class 初始化類

int()’構造器
def __int__(self):    pass

注意:self類似Java的this關鍵字作用,它代碼指向自身執行個體的引用

類屬性

python的屬性與Java和C++等物件導向語言不同,python的屬性即包括了資料成員還包括函數元素,通過句點符號來訪問.

特殊資料內建屬性

C.name 類C的名字(字串)
C.doc 類C的文檔字串
C.bases 類C的所有父類構成的元組
C.dict 類C的屬性
C.module 類C定義所在的模組(1.5 版本新增)
C.class 執行個體C對應的類(僅新式類中)

特殊方法內建屬性

dir():獲得類屬性或者執行個體屬性名稱字列表.

靜態變數屬性

直接在class範圍定義

class C(object):    foo = 100
執行個體變數屬性

python的執行個體屬性與Java和C++等不同.在Java和C++中,執行個體屬性必須首先聲明/定義,而python執行個體屬性是動態建立。設定執行個體的屬性可以在執行個體建立後任意時間進行,也可以在能夠訪問執行個體的代碼中進行。構造
init()是設定這些屬性的關鍵點之一。

    def __init__(self, name, data):        self.name = name        self.data = "123‘

注意:self類似Java的this關鍵字作用,它代碼指向自身執行個體的引用

方法屬性

分為執行個體方法和類方法.執行個體方法只屬於一個執行個體;而類方法即屬於類所有,也屬於執行個體所有.

執行個體方法
class MyClass(object):    def myNoActionMethod(self):    pass

注意:self類似Java的this關鍵字作用,它代碼指向自身執行個體的引用

靜態方法

靜態方法是類層級的方法,不需要執行個體化類就可以直接調用.有兩種方法定義

  • 裝飾器(常用)
    @staticmethod       def foo():        print ‘call static method‘
  • 內建函數
    def foo():        print ‘call static method‘    foo = staticmethod(foo) #靜態方法
類方法

靜態方法是類層級的方法, 與靜態方法不同的是,它必須顯示傳入cls類參數;而且如果還需要調用類中其他的靜態方法,或者類方法的函數, 要定義成類方法. 與靜態方法類似,也有兩種方法定義.

  • 裝飾器(常用)
    @classmethod        def bar(cls):        print ‘call class method and access static varible(staticVar): ‘, cls.staticVar
  • 內建函數
def bar(cls):        print ‘call class method and access static varible(staticVar): ‘, cls.staticVar    bar = classmethod(bar)  #類方法
執行個體詳解
#!/usr/bin/python#coding=utf-8class Target(): #定義類Target    ‘This is Target definition‘ #定義__doc__屬性    staticVar = ‘v1.0‘  #定義靜態變數    def __init__(self, name = ‘default‘, data = 0): #定義建構函式        self.name = name    #執行個體變數        self.data = data    #執行個體變數        print "init instance"    def main():        print "this is a test function"    ‘‘‘    可以用裝飾器定義靜態方法    @staticmethod       def foo():        print ‘call static method‘    ‘‘‘    def foo():        print ‘call static method‘    foo = staticmethod(foo) #靜態方法    ‘‘‘    可以用裝飾器定義類方法    @classmethod        def bar(cls):        print ‘call class method and access static varible(staticVar): ‘, cls.staticVar    ‘‘‘    def bar(cls):        print ‘call class method and access static varible(staticVar): ‘, cls.staticVar    bar = classmethod(bar)  #類方法    #只有調用本模組的時候main()方法才生效    if __name__ == ‘__main__‘:        main()#執行個體化target = Target(‘aaa‘, 123)print ‘name is: ‘, target.nameprint ‘data is: ‘, target.data#列印__doc__屬性print ‘target.__doc__ is: ‘, target.__doc__#列印類__dict__屬性print ‘Target.__dict__ is: ‘, Target.__dict__#列印靜態變數print ‘staticVar is: ‘, Target.staticVar#列印內建函數dir()print ‘dir() is: ‘, dir(Target)#調用靜態方法Target.foo()#調用類方法Target.bar()

輸出

this is a test functioninit instancename is:  aaadata is:  123target.__doc__ is:  This is Target definitionTarget.__dict__ is:  {‘__module__‘: ‘__main__‘, ‘foo‘: <staticmethod object at 0x7f3fd9310cc8>, ‘bar‘: <classmethod object at 0x7f3fd9310d38>, ‘staticVar‘: ‘v1.0‘, ‘main‘: <function main at 0x7f3fd930e758>, ‘__doc__‘: ‘This is Target definition‘, ‘__init__‘: <function __init__ at 0x7f3fd930e6e0>}staticVar is:  v1.0dir() is:  [‘__doc__‘, ‘__init__‘, ‘__module__‘, ‘bar‘, ‘foo‘, ‘main‘, ‘staticVar‘]call static methodcall class method and access static varible(staticVar):  v1.0

python物件導向詳解(上)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.