python的property文法的使用

來源:互聯網
上載者:User

標籤:property   python   

Python中有一個property的文法,它類似於C#的get set文法,其功能有以下兩點:

  1. 將類方法設定為唯讀屬性;

  2. 實現屬性的gettersetter方法;


下面著重說明這兩點:


  • 將類方法設定為唯讀屬性


首先請閱讀下面的代碼

# -*- coding:utf-8 -*-class Book(object):    def __init__(self, title, author, pub_date):        self.title = title        self.author = author        self.pub_date = pub_date    @property    def des_message(self):        return u‘書名:%s, %s, 出版日期:%s‘ % (self.title, self.author, self.pub_date)

在這段代碼中,將property作為一個裝飾器修飾des_message函數,其作用就是將函數des_message變成了類的屬性,且它是唯讀。效果如下:

650) this.width=650;" src="http://s5.51cto.com/wyfs02/M01/8A/56/wKioL1guTGuBtK-OAACOyQMIQRY673.png" title="QQ圖片20161118083315.png" alt="wKioL1guTGuBtK-OAACOyQMIQRY673.png" />正如所示,方法變成了屬性,可以用訪問屬性的方式訪問它。但是如果修改它的值,則會報錯AttributeError錯誤,它是唯讀


  • 實現屬性的getter和setter方法


接著查看以下代碼:

class Array(object):    def __init__(self, length=0, base_index=0):        assert length >= 0        self._data = [None for i in xrange(length)]        self._base_index = base_index            def get_base_index(self):        return self._base_index    def set_base_index(self, base_index):        self._base_index = base_index    base_index = property(        fget=lambda self: self.get_base_index(),        fset=lambda self, value: self.set_base_index(value)    )

這裡我們給類Array設定了一個base_index屬性,它使用property實現了base_indexfgetfset功能,base_index是可讀可寫的,效果如下:

650) this.width=650;" src="http://s5.51cto.com/wyfs02/M00/8A/56/wKioL1guUM_zD-dvAAAu1Adzu_8586.png" title="QQ圖片20161118085214.png" alt="wKioL1guUM_zD-dvAAAu1Adzu_8586.png" />

如所示,base_index是可讀可寫的。


  • 最後

propertyPython的很好的文法特性,我們應該在編程中經常使用它。


本文出自 “許大樹” 部落格,謝絕轉載!

python的property文法的使用

相關文章

聯繫我們

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