python面型對象

來源:互聯網
上載者:User

標籤:空間   why   私人   static   set   預設   obj   str   內部使用   

類(定義)

  靜態屬性  類屬性(變數)  直接寫在類中,全大寫

  動態屬性  方法(函數)  self

  類方法  @classmethodd  cls

  靜態方法  @staticmethod  沒有預設參數

    選課系統   專門給物件導向編程的時候的函數準備的

  特性  @property

class Person:    @staticmethod    def login():        passclass Teacher(Person):    pass

調用

  對象名.動態屬性()  類名.動態屬性(對象)

  類名.靜態屬性  對象名.靜態屬性

  類名.類方法()  對象名.類方法()

  類名.靜態方法  對象名.靜態方法()

對象的命名空間中能存的:

  屬性

對象能調用的:

  對象屬性

  類中的普通方法

私人的

  __名字

    靜態屬性

    動態屬性

    類方法

    靜態方法  

    屬性

  私人的有什麼特點

    只能在類的內部調用

    不能被繼承

  什麼時候用私人的?

    當不想被外部調用也不想被繼承,只想在類內部使用的時候

    當在外部使用的時候,想給使用者的使用使用前\後直接加上某些功能

      私人 + property 使用

3w1h

what    這個東西是什麼where    在哪裡用why    為什麼這麼用how    怎麼用

 

class A:    def __init__(self,name): # 初始化方法        self.__name = name    @property    def name(self):        return self.__name    @name.setter    def name(self,new_name):        if type(new_name) is str:            self.__name = new_nameobj = A("zhao")obj.name = 123print(obj.name)

 

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.