首页 > 代码库 > Python-面向对象 (二 继承)
Python-面向对象 (二 继承)
#define attribute
name = ‘‘
age = 0
#define private attribute
__weight = 0
def __init__(self,n="hello",a=24,w=45.9):
self.name = n
self.age = a
self.__weight = w
def __del__(self):
print("people deconstructor........")
def __repr__(self):
print("people class")
def speak(self):
print("%s is speaking: I am %d years old" % (self.name,self.age))
def weight(self):
print("Weight number:%d" % (self.__weight))
单重继承
grade = ‘‘
def __init__(self,n,a,w,g):
people.__init__(self,n,a,w)
self.grade = g
def speak(self):
print("%s is speaking: I am %d years old,and I am in grade %d" % (self.name,self.age,self.grade))
def __del__(self):
print("student deconstructor......")
s.speak()
topic = ‘‘
name = ‘‘
def __init__(self,n,t):
self.name = n
self.topic = t
def speak(self):
print("I am %s,I am a speaker!My topic is %s " % (self.name,self.topic))
def __del__(self):
print("speaker deconstructor.....")
class sample(speaker,student):
a = ‘‘
def __init__(self,n,a,w,g,t):
student.__init__(self,n,a,w,g)
speaker.__init__(self,n,t)
def __del__(self):
print (‘sample deconstructor‘)
# speaker.__del__()
# student.__del__()
test = sample("Tim",25,80,4,"Python")
test.speak()
2. 如果需要在子类中调用父类的方法,需要以 父类名.方法 这种方式调用,以这种方式调用的时候,注意要传递self参数过去。
对于继承关系,子类继承了父类所有的公有属性和方法,可以在子类中通过父类名来调用,而对于私有的属性和方法,子类是不进行继承的,因此在子类中是无法通过父类名来访问的。
Python支持多重继承。对于多重继承,比如
class SubClass(SuperClass1,SuperClass2)
此时有一个问题就是如果SubClass没有重新定义构造方法,它会自动调用哪个父类的构造方法?这里记住一点:以第一个父类为中心。如果SubClass重新定义了构造方法,需要显示去调用父类的构造方法,此时调用哪个父类的构造方法由你自己决定;若SubClass没有重新定义构造方法,则只会执行第一个父类的构造方法。并且若SuperClass1和SuperClass2中有同名的方法,通过子类的实例化对象去调用该方法时调用的是第一个父类中的方法。
本质上,多态意味着可以对不同的对象使用同样的操作,但它们可能会以多种形态呈现出结果。len(object)函数就体现了这一点。在C++、Java、C#这种编译型语言中,由于有编译过程,因此就鲜明地分成了运行时多态和编译时多态。运行时多态是指允许父类指针或名称来引用子类对象,或对象方法,而实际调用的方法为对象的类类型方法,这就是所谓的动态绑定。编译时多态有模板或范型、方法重载(overload)、方法重写(override)等。而Python是动态语言,动态地确定类型信息恰恰体现了多态的特征。在Python中,任何不知道对象到底是什么类型,但又需要对象做点什么的时候,都会用到多态。
能够直接说明多态的两段示例代码如下:1、方法多态
- # -*- coding: UTF-8 -*-
- _metaclass_=type # 确定使用新式类
- class calculator:
- def count(self,args):
- return 1
- calc=calculator() #自定义类型
- from random import choice
- obj=choice([‘hello,world‘,[1,2,3],calc]) #obj是随机返回的 类型不确定
- print type(obj)
- print obj.count(‘a‘) #方法多态
对于一个临时对象obj,它通过Python的随机函数取出来,不知道具体类型(是字符串、元组还是自定义类型),都可以调用count方法进行计算,至于count由谁(哪种类型)去做怎么去实现我们并不关心。
有一种称为”鸭子类型(duck typing)“的东西,讲的也是多态:
- _metaclass_=type # 确定使用新式类
- class Duck:
- def quack(self):
- print "Quaaaaaack!"
- def feathers(self):
- print "The duck has white and gray feathers."
- class Person:
- def quack(self):
- print "The person imitates a duck."
- def feathers(self):
- print "The person takes a feather from the ground and shows it."
- def in_the_forest(duck):
- duck.quack()
- duck.feathers()
- def game():
- donald = Duck()
- john = Person()
- in_the_forest(donald)
- in_the_forest(john)
- game()
2、运算符多态
- def add(x,y):
- return x+y
- print add(1,2) #输出3
- print add("hello,","world") #输出hello,world
- print add(1,"abc") #抛出异常 TypeError: unsupported operand type(s) for +: ‘int‘ and ‘str‘
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