python面向对象

python从设计之初就已经是一门面向对象的语言,正因为如此,在python中创建一个类和对象是很容易的。本章节我们将详细介绍python的面向对象编程。

如果你以前没有接触过面向对象的编程语言,那你可能需要先了解一些面向对象语言的一些基本特征,在头脑里头形成一个基本的面向对象的概念,这样有助于你更容易的学习python的面向对象编程。

接下来我们先来简单的了解下面向对象的一些基本特征。

面向对象技术简介

类(class): 用来描述具有相同的属性和方法的对象的集合。它定义了该集合中每个对象所共有的属性和方法。对象是类的实例。

类变量:类变量在整个实例化的对象中是公用的。类变量定义在类中且在函数体之外。类变量通常不作为实例变量使用。

数据成员:类变量或者实例变量用于处理类及其实例对象的相关的数据。

方法重载:如果从父类继承的方法不能满足子类的需求,可以对其进行改写,这个过程叫方法的覆盖(override),也称为方法的重载。

实例变量:定义在方法中的变量,只作用于当前实例的类。

继承:即 一个派生类(derived class)继承基类(base class)的字段和方法。继承也允许把一个派生类的对象作为一个基类对象对待。例如,有这样一个设计:一个dog类型的对象派生自animal类,这是 模拟”是一个(is-a)”关系(例图,dog是一个animal)。

实例化:创建一个类的实例,类的具体对象。

方法:类中定义的函数。

对象:通过类定义的数据结构实例。对象包括两个数据成员(类变量和实例变量)和方法。

创建类

使用class语句来创建一个新类,class之后为类的名称并以冒号结尾,如下实例:

class classname:

‘optional class documentation string’#类文档字符串

class_suite #类体

类的帮助信息可以通过classname.__doc__查看。

class_suite 由类成员,方法,数据属性组成。

实例

以下是一个简单的python类实例:

class employee:

‘common base class for all employees’

empcount = 0

def __init__(self, name, salary):

self.name = name

self.salary = salary

employee.empcount += 1

def displaycount(self):

print “total employee %d” % employee.empcount

def displayemployee(self):

print “name : “, self.name, “, salary: “, self.salary

empcount变量是一个类变量,它的值将在这个类的所有实例之间共享。你可以在内部类或外部类使用employee.empcount访问。

第一种方法__init__()方法是一种特殊的方法,被称为类的构造函数或初始化方法,当创建了这个类的实例时就会调用该方法

创建实例对象

要创建一个类的实例,你可以使用类的名称,并通过__init__方法接受参数。

“this would create first object of employee class”

emp1 = employee(“zara”, 2000)

“this would create second object of employee class”

emp2 = employee(“manni”, 5000)

访问属性

您可以使用点(.)来访问对象的属性。使用如下类的名称访问类变量:

emp1.displayemployee()

emp2.displayemployee()

print “total employee %d” % employee.empcount

完整实例:

#!/usr/bin/python

class employee:

‘common base class for all employees’

empcount = 0

def __init__(self, name, salary):

self.name = name

self.salary = salary

employee.empcount += 1

def displaycount(self):

print “total employee %d” % employee.empcount

def displayemployee(self):

print “name : “, self.name, “, salary: “, self.salary

“this would create first object of employee class”

emp1 = employee(“zara”, 2000)

“this would create second object of employee class”

emp2 = employee(“manni”, 5000)

emp1.displayemployee()

emp2.displayemployee()

print “total employee %d” % employee.empcount

执行以上代码输出结果如下:

name : zara ,salary: 2000

name : manni ,salary: 5000

total employee 2

你可以添加,删除,修改类的属性,如下所示:

emp1.age = 7 # 添加一个 ‘age’ 属性

emp1.age = 8 # 修改 ‘age’ 属性

del emp1.age # 删除 ‘age’ 属性

你也可以使用以下函数的方式来访问属性:

getattr(obj, name[, default]) : 访问对象的属性。

hasattr(obj,name) : 检查是否存在一个属性。

setattr(obj,name,value) : 设置一个属性。如果属性不存在,会创建一个新属性。

delattr(obj, name) : 删除属性。

hasattr(emp1, ‘age’) # 如果存在 ‘age’ 属性返回 true。

getattr(emp1, ‘age’) # 返回 ‘age’ 属性的值

setattr(emp1, ‘age’, 8) # 添加属性 ‘age’ 值为 8

delattr(empl, ‘age’) # 删除属性 ‘age’

python内置类属性

__dict__ : 类的属性(包含一个字典,由类的数据属性组成)

__doc__ :类的文档字符串

__name__: 类名

__module__: 类定义所在的模块(类的全名是’__main__.classname’,如果类位于一个导入模块mymod中,那么classname.__module__ 等于 mymod)

__bases__ : 类的所有父类构成元素(包含了以个由所有父类组成的元组)

python内置类属性调用实例如下:

#!/usr/bin/python

class employee:

‘common base class for all employees’

empcount = 0

def __init__(self, name, salary):

self.name = name

self.salary = salary

employee.empcount += 1

def displaycount(self):

print “total employee %d” % employee.empcount

def displayemployee(self):

print “name : “, self.name, “, salary: “, self.salary

print “employee.__doc__:”, employee.__doc__

print “employee.__name__:”, employee.__name__

print “employee.__module__:”, employee.__module__

print “employee.__bases__:”, employee.__bases__

print “employee.__dict__:”, employee.__dict__

执行以上代码输出结果如下:

employee.__doc__: common base class for all employees

employee.__name__: employee

employee.__module__: __main__

employee.__bases__: ()

employee.__dict__: {‘__module__’: ‘__main__’, ‘displaycount’:

, ’empcount’: 2,

‘displayemployee’: ,

‘__doc__’: ‘common base class for all employees’,

‘__init__’: }

python对象销毁(垃圾回收)

同java语言一样,python使用了引用计数这一简单技术来追踪内存中的对象。

在python内部记录着所有使用中的对象各有多少引用。

一个内部跟踪变量,称为一个引用计数器。

当对象被创建时, 就创建了一个引用计数, 当这个对象不再需要时, 也就是说, 这个对象的引用计数变为0 时, 它被垃圾回收。但是回收不是”立即”的, 由解释器在适当的时机,将垃圾对象占用的内存空间回收。

a = 40 # 创建对象

b = a # 增加引用, 的计数

c = [b] # 增加引用. 的计数

del a # 减少引用 的计数

b = 100 # 减少引用 的计数

c[0] = -1 # 减少引用 的计数

垃 圾回收机制不仅针对引用计数为0的对象,同样也可以处理循环引用的情况。循环引用指的是,两个对象相互引用,但是没有其他变量引用他们。这种情况下,仅使 用引用计数是不够的。python 的垃圾收集器实际上是一个引用计数器和一个循环垃圾收集器。作为引用计数的补充, 垃圾收集器也会留心被分配的总量很大(及未通过引用计数销毁的那些)的对象。 在这种情况下, 解释器会暂停下来, 试图清理所有未引用的循环。

实例

析构函数 __del__ ,__del__在对象消逝的时候被调用,当对象不再被使用时,__del__方法运行:

#!/usr/bin/python

class point:

def __init( self, x=0, y=0):

self.x = x

self.y = y

def __del__(self):

class_name = self.__class__.__name__

print class_name, “destroyed”

pt1 = point()

pt2 = pt1

pt3 = pt1

print id(pt1), id(pt2), id(pt3) # 打印对象的id

del pt1

del pt2

del pt3

以上实例运行结果如下:

3083401324 3083401324 3083401324

point destroyed

注意:通常你需要在单独的文件中定义一个类,

类的继承

面向对象的编程带来的主要好处之一是代码的重用,实现这种重用的方法之一是通过继承机制。继承完全可以理解成类之间的类型和子类型关系。

需要注意的地方:继承语法 class 派生类名(基类名)://… 基类名写作括号里,基本类是在类定义的时候,在元组之中指明的。

在python中继承中的一些特点:

1:在继承中基类的构造(__init__()方法)不会被自动调用,它需要在其派生类的构造中亲自专门调用。

2:在调用基类的方法时,需要加上基类的类名前缀,且需要带上self参数变量。区别于在类中调用普通函数时并不需要带上self参数

3:python总是首先查找对应类型的方法,如果它不能在派生类中找到对应的方法,它才开始到基类中逐个查找。(先在本类中查找调用的方法,找不到才去基类中找)。

如果在继承元组中列了一个以上的类,那么它就被称作”多重继承” 。

语法:

派生类的声明,与他们的父类类似,继承的基类列表跟在类名之后,如下所示:

class subclassname (parentclass1[, parentclass2, …]):

‘optional class documentation string’

class_suite

实例:

#!/usr/bin/python

class parent: # define parent class

parentattr = 100

def __init__(self):

print “calling parent constructor”

def parentmethod(self):

print ‘calling parent method’

def setattr(self, attr):

parent.parentattr = attr

def getattr(self):

print “parent attribute :”, parent.parentattr

class child(parent): # define child class

def __init__(self):

print “calling child constructor”

def childmethod(self):

print ‘calling child method’

c = child() # 实例化子类

c.childmethod() # 调用子类的方法

c.parentmethod() # 调用父类方法

c.setattr(200) # 再次调用父类的方法

c.getattr() # 再次调用父类的方法

以上代码执行结果如下:

calling child constructor

calling child method

calling parent method

parent attribute : 200

你可以继承多个类

class a: # define your class a

…..

class b: # define your calss b

…..

class c(a, b): # subclass of a and b

…..

你可以使用issubclass()或者isinstance()方法来检测。

issubclass() – 布尔函数判断一个类是另一个类的子类或者子孙类,语法:issubclass(sub,sup)

isinstance(obj, class) 布尔函数如果obj是class类的实例对象或者是一个class子类的实例对象则返回true。

重载方法

如果你的父类方法的功能不能满足你的需求,你可以在子类重载你父类的方法:

实例:

#!/usr/bin/python

class parent: # 定义父类

def mymethod(self):

print ‘calling parent method’

class child(parent): # 定义子类

def mymethod(self):

print ‘calling child method’

c = child() # 子类实例

c.mymethod() # 子类调用重载方法

执行以上代码输出结果如下:

calling child method

基础重载方法

下表列出了一些通用的功能,你可以在自己的类重写:

序号

方法, 描述 & 简单的调用

1 __init__ ( self [,args…] )构造函数简单的调用方法: obj = classname(args)

2 __del__( self )析构方法, 删除一个对象简单的调用方法 : dell obj

3 __repr__( self )转化为供解释器读取的形式简单的调用方法 : repr(obj)

4 __str__( self )用于将值转化为适于人阅读的形式简单的调用方法 : str(obj)

5 __cmp__ ( self, x )对象比较简单的调用方法 : cmp(obj, x)

运算符重载

python同样支持运算符重载,实例如下:

#!/usr/bin/python

class vector:

def __init__(self, a, b):

self.a = a

self.b = b

def __str__(self):

return ‘vector (%d, %d)’ % (self.a, self.b)

def __add__(self,other):

return vector(self.a + other.a, self.b + other.b)

v1 = vector(2,10)

v2 = vector(5,-2)

print v1 + v2

以上代码执行结果如下所示:

vector(7,8)

隐藏数据

在 python中实现数据隐藏很简单,不需要在前面加什么关键字,只要把类变量名或成员函数前面加两个下划线即可实现数据隐藏的功能,这样,对于类的实例来 说,其变量名和成员函数是不能使用的,对于其类的继承类来说,也是隐藏的,这样,其继承类可以定义其一模一样的变量名或成员函数名,而不会引起命名冲突。 实例:

#!/usr/bin/python

class justcounter:

__secretcount = 0

def count(self):

self.__secretcount += 1

print self.__secretcount

counter = justcounter()

counter.count()

counter.count()

print counter.__secretcount

python 通过改变名称来包含类名:

1

2

traceback (most recent call last):

file “test.py”, line 12, in

print counter.__secretcount

attributeerror: justcounter instance has no attribute ‘__secretcount’

python不允许实例化的类访问隐藏数据,但你可以使用object._classname__attrname访问属性,将如下代码替换以上代码的最后一行代码:

…………………….

print counter._justcounter__secretcount

执行以上代码,执行结果如下:

1

2

2

Posted in 未分类

发表评论