举例讲解Python面相对象编程中对象的属性与类的方法
python对象的属性
进入正题,来看一个实例来了解python中类,对象中公有属性,私有属性及局部变量,全局变量的区别.
root@10.1.6.200:~#catobject.py
#!/usr/bin/envpython #coding:utf8 classDave(): var1="classatribute,publicatrributevar1"#类属性,公有属性var1 __var2="classselfatribute__var2"#类的私有属性__var2 deffun(self): self.var2="objectpublicatrributevar2"#对象的公有属性var2 self.__var3="objectselfatrribute__var3"#对象的私有属性__var3 var4="Functionofthelocalvariablevar4"#函数fun的局部变量 defother(self): printself.__var3
根据上面代码后面加入以下代码可以实例化一个对象及获取类公有属性.
he=Dave()#实例化一个对象he printhe.var1#从实例中获取类的公有属性 printDave.var1#直接从类中获取公有属性
root@10.1.6.200:~#./object.py
classatribute,publicatrributevar1 classatribute,publicatrributevar1
类的私有属性不能被类或对象直接调用
he=Dave() printDave.__var2 printhe.__var2
root@10.1.6.200:~#./object.py
Traceback(mostrecentcalllast): File"./object.py",line19,in<module> printDave.__var2 AttributeError:classDavehasnoattribute'__var2'
但可以通过方法间接调用.
classDave(): var1="classatribute,publicatrributevar1"#类属性,公有属性var1 __var2="classselfatribute__var2"#类的私有属性__var2 defother(self): printDave.__var2 he=Dave() he.other()
root@10.1.6.200:~#./object.py
classselfatribute__var2
获取类方法中的对象的公有属性,需要先通过对象执行类中的方法.并通过对象调用该属性.
he=Dave() liu=Dave() he.fun() printhe.var2 printliu.var2
root@10.1.6.200:~#./object.py
objectpublicatrributevar2 Traceback(mostrecentcalllast):<span></span>#对象liu由于没有调用fun方法所有就没有该属性. File"./object.py",line20,in<module> printliu.var2 AttributeError:Daveinstancehasnoattribute'var2'
对象的私有属性和类的私有属性类似,也不能被类或对象直接调用
he=Dave() he.fun() printhe.__var3
root@10.1.6.200:~#./object.py
Traceback(mostrecentcalllast): File"./object.py",line18,in<module> printhe.__var3 AttributeError:Daveinstancehasnoattribute'__var3'
局部变量也不能被对象直接调用,可以在函数内部使用.
he=Dave() he.fun() printhe.var4
root@10.1.6.200:~#./object.py
Traceback(mostrecentcalllast): File"./object.py",line18,in<module> printhe.var4 AttributeError:Daveinstancehasnoattribute'var4'
deffun(self): self.var2="objectpublicatrributevar2"#对象的公有属性var2 self.__var3="objectselfatrribute__var3"#对象的私有属性__var3 var4="Functionofthelocalvariablevar4"#函数fun的局部变量 printvar4#可以在函数内部直接打印,只在该函数内有用 printself.__var3 he=Dave() he.fun()
root@10.1.6.200:~#./object.py
Functionofthelocalvariablevar4 objectselfatrribute__var3
那么var4和self._var3有什么区别呢.目前看2个都在外部使用不了.下面在定义一个函数other调用.
deffun(self): self.var2="objectpublicatrributevar2"#对象的公有属性var2 self.__var3="objectselfatrribute__var3"#对象的私有属性__var3 var4="Functionofthelocalvariablevar4"#函数fun的局部变量 printvar4#一个函数的局部变量在另外一个函数是访问不到的 printself.__var3 defother(self): printvar4 printself.__var3 he=Dave() he.fun() print"#"*100 he.other()
root@10.1.6.200:~#./object.py
Functionofthelocalvariablevar4 objectselfatrribute__var3 #################################################################################################### Traceback(mostrecentcalllast):#会认为var4是全局变量打印.定义全局变量可在class头加入var4="global" File"./object.py",line22,in<module> he.other() File"./object.py",line16,inother printvar4 NameError:globalname'var4'isnotdefined
#!/usr/bin/envpython #coding:utf8 var4="global"#定义var4为全局变量 classDave(): var1="classatribute,publicatrributevar1"#类属性,公有属性var1 __var2="classselfatribute__var2"#类的私有属性__var2 deffun(self): self.var2="objectpublicatrributevar2"#对象的公有属性var2 self.__var3="objectselfatrribute__var3"#对象的私有属性__var3 var4="Functionofthelocalvariablevar4"#函数fun的局部变量 printvar4 printself.__var3 defother(self): printvar4 printself.__var3#可调用私有属性,前提是先调用fun he=Dave() he.fun() print"#"*100 he.other()
root@10.1.6.200:~#./object.py
Functionofthelocalvariablevar4 objectselfatrribute__var3 #################################################################################################### global objectselfatrribute__var3
python类的方法
python类中的方法:公有方法,私有方法,类方法,静态方法.
下面通过一个实例了解它们之间的区别:
#!/usr/bin/envpython #coding:utf8 classDave(): name="python" deffun1(self):#定义公有方法 printself.name print"iampublicmethod" def__fun2(self):#定义私有方法 printself.name print"iamselfmethod"
先来看公有方法和私有方法,加入以下代码输出
root@10.1.6.200:~#./method.py#直接调用对象公有方法没有问题
python iampublicmethod
私有方法和私有属性一样是被保护起来,不能直接调用对象的私有方法,但可以间接调用.
#!/usr/bin/envpython #coding:utf8 classDave(): name="python" deffun1(self):#定义公有方法 printself.name print"iampublicmethod" self.__fun2() def__fun2(self):#定义私有方法 printself.name print"iamselfmethod" he=Dave() he.fun1()
root@10.1.6.200:~#./method.py
python iampublicmethod python iamselfmethod
公有属性是可以被类调用,但是公有方法是不可以被类直接调用.需要实例化对象调用.如果想一个方法被类直接调用的话,就需要转换,变成一个类方法.变成类方法有2种,比较简单的可以加装饰器.
@classmethod defclassFun(self):#定义类方法 printself.name print"iamclassmethod" Dave.classFun()
root@10.1.6.200:~#./method.py
python iamclassmethod
另一个方法比较麻烦,需要定义一个新的函数,以及使用classmethod方法转换函数为类方法.当然调用也需要使用新的该函数名字.
defclassFun(self):#定义类方法 printself.name print"iamclassmethod" classnewFun=classmethod(classFun) Dave.classnewFun()#被转换后的是一个类方法,原来classfun还是一个普通方法
root@10.1.6.200:~#./method.py
python iamclassmethod
静态方法在使用中和类方法一样,也是为了让类中直接调用,区别定义时不加self.
@staticmethod defstaticFun():#d定义静态方法 printDave.name#注意不加self,直接打name也不行,会认为调用全局变量,需要使用类型加属性. print"iamstaticmethod" Dave.staticFun()
oot@10.1.6.200:~#./method.py
python iamstaticmethod
同样也可以通过一个函数调用
defstaticfun():#定义静态方法 printDave.name print"iamstaticmethod" staticnewFun=staticmethod(staticFun) Dave.staticnewFun()
root@10.1.6.200:~#./method.py
python iamstaticmethod