举例讲解Python面相对象编程中对象的属性与类的方法


Posted in Python onJanuary 19, 2016

python 对象的属性
进入正题,来看一个实例来了解python中类,对象中公有属性,私有属性及局部变量,全局变量的区别.

root@10.1.6.200:~# cat object.py
#!/usr/bin/env python
#coding:utf8
 
class Dave():
  var1 = "class atribute,public atrribute var1" #类属性,公有属性var1
  __var2 = "class self atribute __var2"  #类的私有属性__var2
 
  def fun(self):
    self.var2 = "object public atrribute var2" #对象的公有属性var2
    self.__var3 = "object self atrribute __var3" #对象的私有属性__var3
    var4 = "Function of the local variable var4" #函数fun的局部变量
   
  def other(self):
    print self.__var3

根据上面代码后面加入以下代码可以实例化一个对象及获取类公有属性.

he = Dave()    #实例化一个对象he
print he.var1   #从实例中获取类的公有属性
print Dave.var1  #直接从类中获取公有属性
root@10.1.6.200:~# ./object.py
class atribute,public atrribute var1
class atribute,public atrribute var1

类的私有属性不能被类或对象直接调用

he = Dave()
print Dave.__var2
print he.__var2
root@10.1.6.200:~# ./object.py
Traceback (most recent call last):
 File "./object.py", line 19, in <module>
  print Dave.__var2
AttributeError: class Dave has no attribute '__var2'

但可以通过方法间接调用.

class Dave():
  var1 = "class atribute,public atrribute var1" #类属性,公有属性var1
  __var2 = "class self atribute __var2"  #类的私有属性__var2
   
  def other(self):
    print Dave.__var2   
 
he = Dave()
he.other()
root@10.1.6.200:~# ./object.py
class self atribute __var2

获取类方法中的对象的公有属性,需要先通过对象执行类中的方法.并通过对象调用该属性.

he = Dave()
liu = Dave()
he.fun()
print he.var2
print liu.var2
root@10.1.6.200:~# ./object.py
object public atrribute var2
Traceback (most recent call last): <span></span>       #对象liu由于没有调用fun方法所有就没有该属性.
File "./object.py", line 20, in <module>
  print liu.var2
AttributeError: Dave instance has no attribute 'var2'

对象的私有属性和类的私有属性类似,也不能被类或对象直接调用

he = Dave()
he.fun()
print he.__var3
root@10.1.6.200:~# ./object.py
Traceback (most recent call last):
 File "./object.py", line 18, in <module>
  print he.__var3
AttributeError: Dave instance has no attribute '__var3'

局部变量也不能被对象直接调用,可以在函数内部使用.

he = Dave()
he.fun()
print he.var4
root@10.1.6.200:~# ./object.py

Traceback (most recent call last):
 File "./object.py", line 18, in <module>
  print he.var4
AttributeError: Dave instance has no attribute 'var4'
def fun(self):
    self.var2 = "object public atrribute var2" #对象的公有属性var2
    self.__var3 = "object self atrribute __var3" #对象的私有属性__var3
    var4 = "Function of the local variable var4" #函数fun的局部变量
    print var4       #可以在函数内部直接打印,只在该函数内有用
    print self.__var3
 
he = Dave()
he.fun()
root@10.1.6.200:~# ./object.py
Function of the local variable var4
object self atrribute __var3

那么var4和self._var3有什么区别呢.目前看2个都在外部使用不了.下面在定义一个函数other调用.

def fun(self):
    self.var2 = "object public atrribute var2" #对象的公有属性var2
    self.__var3 = "object self atrribute __var3" #对象的私有属性__var3
    var4 = "Function of the local variable var4" #函数fun的局部变量
    print var4       #一个函数的局部变量在另外一个函数是访问不到的
    print self.__var3
   
  def other(self):
    print var4
    print self.__var3
 
he = Dave()
he.fun()
print "#"*100
he.other()
root@10.1.6.200:~# ./object.py
Function of the local variable var4
object self atrribute __var3
####################################################################################################
Traceback (most recent call last):   #会认为var4是全局变量打印.定义全局变量可在class 头加入 var4 = "global"
 File "./object.py", line 22, in <module>
  he.other()
 File "./object.py", line 16, in other
  print var4
NameError: global name 'var4' is not defined
#!/usr/bin/env python
#coding:utf8
var4 = "global"            #定义var4为全局变量
class Dave():
  var1 = "class atribute,public atrribute var1" #类属性,公有属性var1
  __var2 = "class self atribute __var2"  #类的私有属性__var2
 
  def fun(self):
    self.var2 = "object public atrribute var2" #对象的公有属性var2
    self.__var3 = "object self atrribute __var3" #对象的私有属性__var3
    var4 = "Function of the local variable var4" #函数fun的局部变量
    print var4
    print self.__var3
   
  def other(self):
    print var4
    print self.__var3       #可调用私有属性,前提是先调用fun
 
he = Dave()
he.fun()
print "#"*100
he.other()
root@10.1.6.200:~# ./object.py
Function of the local variable var4
object self atrribute __var3
####################################################################################################
global
object self atrribute __var3

python 类的方法
python类中的方法:公有方法,私有方法,类方法,静态方法.

下面通过一个实例了解它们之间的区别:

#!/usr/bin/env python
#coding:utf8
class Dave():
  name = "python"
 
  def fun1(self):        #定义公有方法
    print self.name
    print "i am public method"
 
  def __fun2(self):       #定义私有方法
    print self.name
    print "i am self method"

先来看公有方法和私有方法,加入以下代码输出

root@10.1.6.200:~# ./method.py    #直接调用对象公有方法没有问题
python
i am public method

私有方法和私有属性一样是被保护起来,不能直接调用对象的私有方法,但可以间接调用.

#!/usr/bin/env python
#coding:utf8
class Dave():
  name = "python"
 
  def fun1(self):        #定义公有方法
    print self.name
    print "i am public method"
    self.__fun2()
 
  def __fun2(self):       #定义私有方法
    print self.name
    print "i am self method"
 
he = Dave()
he.fun1()
root@10.1.6.200:~# ./method.py
python
i am public method
python
i am self method

公有属性是可以被类调用,但是公有方法是不可以被类直接调用.需要实例化对象调用.如果想一个方法被类直接调用的话,就需要转换,变成一个类方法.变成类方法有2种,比较简单的可以加装饰器.

@classmethod
  def classFun(self):      #定义类方法
    print self.name
    print "i am class method"
 
Dave.classFun()
root@10.1.6.200:~# ./method.py
python
i am class method

另一个方法比较麻烦,需要定义一个新的函数,以及使用classmethod方法转换函数为类方法.当然调用也需要使用新的该函数名字.

def classFun(self):      #定义类方法
    print self.name
    print "i am class method"
 
  classnewFun = classmethod(classFun)
 
 
Dave.classnewFun()       #被转换后的是一个类方法,原来classfun还是一个普通方法
root@10.1.6.200:~# ./method.py
python
i am class method

静态方法在使用中和类方法一样,也是为了让类中直接调用,区别定义时不加self.

@staticmethod
  def staticFun():       #d定义静态方法
    print Dave.name #注意不加self,直接打name也不行,会认为调用全局变量,需要使用类型加属性.
    print "i am static method"
 
Dave.staticFun()
oot@10.1.6.200:~# ./method.py
python
i am static method

同样也可以通过一个函数调用

def staticfun():       #定义静态方法
    print Dave.name
    print "i am static method"
 
  staticnewFun = staticmethod(staticFun)
 
Dave.staticnewFun()
root@10.1.6.200:~# ./method.py
python
i am static method
Python 相关文章推荐
python学习 流程控制语句详解
Jun 01 Python
快速实现基于Python的微信聊天机器人示例代码
Mar 03 Python
获取Django项目的全部url方法详解
Oct 26 Python
通过Pandas读取大文件的实例
Jun 07 Python
Python异常的检测和处理方法
Oct 26 Python
python中ImageTk.PhotoImage()不显示图片却不报错问题解决
Dec 06 Python
python批量识别图片指定区域文字内容
Apr 30 Python
对Django中的权限和分组管理实例讲解
Aug 16 Python
关于Python核心框架tornado的异步协程的2种方法详解
Aug 28 Python
python 实现aes256加密
Nov 27 Python
Python tkinter实现日期选择器
Feb 22 Python
Python可变与不可变数据和深拷贝与浅拷贝
Apr 06 Python
python结合API实现即时天气信息
Jan 19 #Python
Python+django实现文件下载
Jan 17 #Python
Python+django实现文件上传
Jan 17 #Python
初步剖析C语言编程中的结构体
Jan 16 #Python
举例讲解Python设计模式编程的代理模式与抽象工厂模式
Jan 16 #Python
python实现发送和获取手机短信验证码
Jan 15 #Python
详解python单例模式与metaclass
Jan 15 #Python
You might like
PHP面向对象五大原则之里氏替换原则(LSP)详解
2018/04/08 PHP
JavaScript 学习笔记一些小技巧
2010/03/28 Javascript
将list转换为json失败的原因
2013/12/17 Javascript
javascript实现网站加入收藏功能
2015/12/16 Javascript
学习使用bootstrap3栅格系统
2016/04/12 Javascript
js轮播图代码分享
2016/07/14 Javascript
js实现点击按钮弹出上传文件的窗口
2016/12/23 Javascript
jQuery动态生成不规则表格(前后端)
2017/02/21 Javascript
整理关于Bootstrap列表组的慕课笔记
2017/03/29 Javascript
浅谈js中的this问题
2017/08/31 Javascript
封装运动框架实战左右与上下滑动的焦点轮播图(实例)
2017/10/17 Javascript
基于JavaScript实现抽奖系统
2018/01/16 Javascript
详解html-webpack-plugin用法全解
2018/01/22 Javascript
解决webpack多页面内存溢出的方法示例
2019/10/08 Javascript
基于javascript处理二进制图片流过程详解
2020/06/08 Javascript
JS removeAttribute()方法实现删除元素的某个属性
2021/01/11 Javascript
python中执行shell命令的几个方法小结
2014/09/18 Python
Python运算符重载用法实例
2015/05/28 Python
Python+Opencv识别两张相似图片
2020/03/23 Python
使用实现pandas读取csv文件指定的前几行
2018/04/20 Python
Pycharm保存不能自动同步到远程服务器的解决方法
2019/06/27 Python
python暴力解压rar加密文件过程详解
2019/07/05 Python
Django框架中序列化和反序列化的例子
2019/08/06 Python
Python Switch Case三种实现方法代码实例
2020/06/18 Python
Python变量及数据类型用法原理汇总
2020/08/06 Python
HTML5 绘制图像(上)之:关于canvas元素引领下一代web页面的问题
2013/04/24 HTML / CSS
使用canvas来完成线性渐变和径向渐变的功能的方法示例
2019/07/25 HTML / CSS
美国购车网站:TrueCar
2016/10/19 全球购物
世界上最大的街头服饰网站:Karmaloop
2017/02/04 全球购物
法国女性内衣购物网站:Glamuse
2019/05/13 全球购物
数控专业大学生的自我鉴定
2013/11/13 职场文书
优秀毕业大学生推荐信
2013/11/13 职场文书
列车长先进事迹材料
2014/01/25 职场文书
生产部管理制度
2014/01/31 职场文书
学校教研活动总结
2014/07/02 职场文书
内科护士节演讲稿
2014/09/11 职场文书