python物件導向編程,python物件導向

來源:互聯網
上載者:User

python物件導向編程,python物件導向

python物件導向編程

一個類對象中可以有下面幾種資料類型

1. 靜態變數

2. 動態變數

3. 私人變數

4. 靜態方法

5. 動態方法

6. 私人方法

7. 類方法

8. 特性

9. 專有 方法


首先定義一個類:

#!/usr/bin/env python #coding:utf-8class Province(object):    #靜態欄位    desc = '中國一級行政區'        #動態欄位    def __init__(self,name,capital,leader,flag=True): #定義專有方法__func__        #動態欄位,只有執行個體化的對象才能訪問動態欄位,類本身不能訪問動態欄位        self.Name = name         self.Capital = capital         self.Leader = leader        self.__Pollution = flag #私人變數定義__var        self.Dict={'name':'Lee','age':30}    #動態方法,或叫對象方法,只有執行個體化的對象才能訪問動態方法    def FrankDynamic(self):        print 'This is 動態方法'        #靜態方法不能訪問類變數和執行個體變數,相當於一個全域函數    #不需要定義執行個體即可使用這個方法。另外,多個執行個體共用此靜態方法,只需要分配一個記憶體    @staticmethod     def LeeStatic():        print 'this is 靜態方法'        #特性,訪問方式和欄位的訪問方式一樣       @property    def AllenProperty(self):        return self.Name        #類方法,一個類方法就可以通過類對象或類對象的執行個體來調用的方法,     #不管你是用類對象還是類執行個體調用這個方法,該方法的第一個參數總是定義該方法的類對象      @classmethod    def MarlonClass(cls):        print 'This is 類方法'        #私人函數,只可以在類的動態函數中使用,也可以通過執行個體object._Province__sha調用,但請不要使用    def __sha(self):         print 'This is 私人函數'        def AswillDynamic(self): #可以通過動態方法引動過程私人函數        self.__sha()                        @property #通過特性來訪問動態私人欄位,可以使用該裝飾器,又叫特性    def Pollution(self):        print self.__Pollution                @Pollution.setter #通過特性,修改動態私人欄位,可以使用該裝飾器,必須和上邊的函數相結合    def Pollution(self,value):        self.__Pollution = value    #常用的專有方法    def __call__(self): #__call__專有方法        print "this is call 方法"        return "this is __str__專有方法"       def __str__(self):        return "this is __str__專有方法"        def __getitem__(self,key):        return self.Dict[key]        def __setitem__(self,key,value):        self.Dict[key]=value    def __delitem__(self,key):        del self.Dict[key]        ####################以上是類的定義##############################

然後執行個體化這個類,並且各種資料類型的使用方法

#執行個體化一個對象               HeiBeiProvince=Province('河北','石家莊','李揚',flag=False)#對象可以訪問靜態欄位print HeiBeiProvince.descHeiBeiProvince.FrankDynamic()#類不能訪問動態方法#Province.FrankDynamic()#對象和類都可以訪問靜態方法LeeStaticProvince.LeeStatic()HeiBeiProvince.LeeStatic()#特性的訪問方式print HeiBeiProvince.AllenProperty #特性,可以像訪問變數一樣訪問特性#如何訪問私人函數HeiBeiProvince.AswillDynamic() #該公有函數去調用對象的私人函數__sha()#通過特性訪問修改私人變數HeiBeiProvince.PollutionHeiBeiProvince.Pollution=FalseHeiBeiProvince.PollutionHeiBeiProvince.MarlonClass()#對象可以通過以下方法訪問類的私人函數HeiBeiProvince._Province__sha() #私人函數,可以通過這種方式訪問,但堅決不要用在程式中#專有方法的使用#__call__,可以把類的對象當作函數使用HeiBeiProvince() #把類的對象當作函數使用,相當於執行HeiBeiProvice.__call__()#__str__print HeiBeiProvince #會調用專有方法__str__#__getitem__print HeiBeiProvince['name']#__setitem__print 'before __setitem__', HeiBeiProvince['name']HeiBeiProvince['name']='Frank'print 'after __setitem__', HeiBeiProvince['name']#__delitem__del HeiBeiProvince['name']print HeiBeiProvince.Dict





相關文章

聯繫我們

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