Python中的元類(metaclass)

來源:互聯網
上載者:User

Python號稱“萬物皆對象”,所以說“類”也是對象!類的執行個體叫對象,元類的執行個體叫類。也就是說,元類是類的類。這對Ruby程式員來說很好理解,因為Ruby裡虛類的概念基本等同於元類,不過對於PHP程式員來說就不好理解了,下面看看文法:

先看看在Python2.6裡的用法:

>>> class Foo(type):
        def __str__(self):
            return "foo"

>>> class Bar(object):
        __metaclass__ = Foo

        def __str__(self):
            return "bar"

>>> type(Bar)
<class '__main__.Foo'>
>>> type(Bar())
<class '__main__.Bar'>

>>> print(Bar)
foo
>>> print(Bar())
bar

再看看在Python3.0裡的文法:

>>> class Foo(type):
        def __str__(self):
            return "foo"

>>> class Bar(object, metaclass = Foo):
        def __str__(self):
            return "bar"

>>> type(Bar)
<class '__main__.Foo'>
>>> type(Bar())
<class '__main__.Bar'>

>>> print(Bar)
foo
>>> print(Bar())
bar

元類必須從type繼承,類聲明的時候Python2.6和Python3.0不同:在2.6裡是通過類變數__metaclass__來設定的,在3.0裡是通過關鍵字參數metaclass來設定的。盡量使用Python3.0吧,更具體的資訊可以參考手冊。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.