【循序渐进学Python】7.面向对象的核心——类型(上)

时间:2022-07-28 20:51:03

我们知道Python是一门面向对象的脚本语言。从C#的角度来看:首先Python支持多继承。Python 类型成员通常都是public的,并且所有成员函数都是virtual的(可以直接重写)。

1. 定义类型

类是对象的模板,在Python中我们使用class关键字来定义一个类型。

 # -- coding: utf-8 --
class Employee(object):
# self 关键字就是对象自身的一个引用(类似于C#中的this关键字)
def setName(self,name):
self.name = name def getName(self):
return self.name def greet(self):
print "hello,world! I'm %s" % self.name

可以这样使用我们定义好的Employee类:

 foo = Employee()
bob = Employee()
foo.setName('Sunshine')
bob.setName('Bob') foo.greet() # hello,world! I'm Sunshine
bob.greet() # hello,world! I'm Bob
print foo.name # Sunshine
bob.name = 'Bob2' # name是Employee类的一个特性
bob.greet() # hello,world! I'm Bob2

1.1 使用新式类型

在Python 2.2之后,对象的工作方式有了很大的改变,所有导致了在Python 2.x 版本中存在两种形式的类:Python 2.2之前的旧式类,和之后新增的新式类,新式类提供了很多新的特性(比如:super函数、property函数等),如果不需要兼容旧版本的Python代码那么做好使用新式类,在Python中声明新式类有两种方法:

1.把赋值语句__metaclass__ = type 放置在定义模块的最开始位置,如下:

# -- coding: utf-8 --
_metaclass_ = type # 确定使用新式类 class Employee():
pass

2.子类化object类型,或者是其他新式类型,如下:

class NewStyle(object):
pass

2. 特性和成员方法

对象包括特性和方法,特性只是作为对象的一部分的变量,成员方法则是存储在对象内部的函数。Python中的所有方法函数在声明时显式地将第一个参数(self)表示为对象(实例),这个参数的值在方法被调用时隐式赋值:

 # -- coding: utf-8 --
_metaclass_ = type # 确定使用新式类 class Class:
def method(self):
print 'I have a self' def function():
print 'i don\'t...' instance = Class()
instance.method() # I have a self
instance.method = function # 绑定一个普通的函数
instance.method() # i don't...

通过self参数可以使用该实例的所有成员对象:

 # -- coding: utf-8 --
_metaclass_ = type # 确定使用新式类 class Bird:
song = 'Squaawk!'
def sing(self):
print self.song bird = Bird()
bird.sing() # Squaawk!

2.1 私有变量和私有方法

Python其实并不存在不能访问的私有变量和私有方法。不过在Python中有一个约定:以一个下划线(_)开头的名字,应该作为一个非公共的API(不论是函数、方法或者数据成员)。我们可以这样定义一个"私有变量":

_flag = True

Python解释器在遇到任何以双下划线(__)开头的标识符将会被替换为_className__spam形式,其中className是当前的类型名称,__spam就是当前的标识符名称。所以我们可以这样定义一个"私有方法":

 # -- coding: utf-8 --
_metaclass_ = type # 确定使用新式类 class Secretive:
def __inaccessible(self):
print 'Bet you can\' see me...' def accessible(self):
print 'The secret message is:'
self.__inaccessible() s = Secretive()
# AttributeError: Secretive instance has no attribute '__inaccessible'
s.__inaccessible()

因为在类的内部定义中,所有以双下划线开始的名字都被转换成前面加上单下划线和类名的形式,所以还是可以访问私有方法:

# Bet you can' see me...
s._Secretive__inaccessible()

3. 继承

作为面向对象三个基本的特性之一———继承,我们可以利用它在现有类型的基础上创建自己的类型。在Python中定义派生类的方式如下:

 # -- coding: utf-8 --
_metaclass_ = type # 确定使用新式类 class Person:
def printName(self):
print 'Is a Person'
def printHello(self):
print 'hello,world' class Employee(Person):
# override base Method
def printName(self):
print 'Is a Employee' person = Person()
person.printName() # Is a Person
employee = Employee()
employee.printName() # Is a Employee
employee.printHello() # hello,world

可以看到子类继承了基类的方法,由于在Python中所有的成员函数都是virtual的,所有我们也可以选择重写基类的方法。

3.1 多重继承

Python是一个多继承语言,使用多重继承的语法很简单,只需要在定义子类后面的括号中添加多个父类名称即可,如:

class C(A,B):
pass

注意

多重继承(multiple inheritance)是个很有用的工具。不过除非你特别熟悉多重继承,否则应该尽量避免使用。因为它可能会有很多出乎意料的行为。例如:一个方法从多个超类继承,那么根据继承的顺序(class语句中):先继承的类中的方法会重写后继承类中的方法。

3.2 查看继承关系

Python中有两个内置函数可拥有查看继承关系:

  • 使用isinstance函数检查实例的类型
  • 使用issubclass函数检查类的继承关系

使用方式如下:

 # -- coding: utf-8 --
obj = "string"
print isinstance(obj,str) # True
print obj.__class__ # <type 'str'> print issubclass(bool,int) # True
print bool.__bases__ # (<type 'int'>,)

3.3 检查对象中的方法是否存在

使用hasattr(x,'call')来判断一个对象是否存在某个方法,如下:

 # -- coding: utf-8 --
_metaclass_ = type # 确定使用新式类 class Person:
def PrintName(self):
print 'Is a Person'
def PrintHello(self):
print 'hello,world' per = Person() # check method Exists
print hasattr(per,'PrintName') # True

参考资料&进一步阅读

深刻理解Python中的元类(metaclass)

Python基础教程(第二版)

Python入门教程——类