python第三十三天----靜態方法、類方法、屬性方法

來源:互聯網
上載者:User

標籤:stat   使用方法   name   elf   執行個體變數   執行個體   刪除   logs   不能   

@staticmethod 裝飾後,類中的方法轉成靜態方法

1 class a:2     3      @staticmethod4      def b(self):5         print(‘‘)

靜態方法不可以訪問執行個體變數或類變數,相當於類中的工具包。如os,  system 等 import的模組一般

 

@classmethod裝飾後,類中的方法轉成類方法,類方法和普通方法的區別是, 類方法只能訪問類變數,不能訪問執行個體變數

1 class b(object):2     name=‘aa‘3     @classmethod4     def cc(self):5         print(‘%s .l.....‘%name)6 7 8 9 b.cc()

@property裝飾後把,類中的方法方法轉成靜態屬性

靜態屬性的使用方法

 1 class Eat_food(object): 2     self.__food=None#設定一個私人屬性 3      4     @property 5     def eat(self): 6         print(‘.....%s‘%self.__food) 7      8     @eat.setter  #再次裝飾後可以對其賦值 9     def eat(self,food):10         print(‘.....%s‘%food)11         self.__food=food#儲存到私人屬性,備用12     13     @eat.deleter14     def eat(self):15         del self.__food#刪除儲存賦值的私人屬性,相當於刪除這個屬性方法

 

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.