python正则表达式

python类的继承关系

class studeent(object):
“”“docstring for studeent”“”
def init(self, arg):
super(studeent, self).init()
self.arg = arg
s1=studeent(23)
print s1.arg
s1.name=’zhangfei’#自由的给对象绑定属性
print s1.name
class teacher(object):
“”“docstring for teacher”“”
def init(self,name,age):
super(teacher, self).init()

    self.name=name
    self.age=age
def print_info(self):
    print('%s: %s' % (self.name, self.age))

t2=teacher(‘咋就’,23)
print t2.age
t2.print_info()#类中定义的函数只有一点不同,就是第一个参数永远是实例变量self,并且,调用时,不用传递该参数
class Animal(object):
def run(self):
print(‘Animal is running…’)

class Dog(Animal):

def run(self):
    print('Dog is running...')

class Cat(Animal):

def run(self):
    print('Cat is running...')

def run_twice(animal):
animal.run()
animal.run()
run_twice(Animal())
run_twice(Cat())
class Tortoise(Animal):
def run(self):
print(‘Tortoise is running slowly…’)
run_twice(Tortoise())

#

静态语言 vs 动态语言

对于静态语言(例如Java)来说,如果需要传入Animal类型,则传入的对象必须是Animal类型或者它的子类,否则,将无法调用run()方法。

对于Python这样的动态语言来说,则不一定需要传入Animal类型。我们只需要保证传入的对象有一个run()方法就可以了:

class Timer(object):

def run(self):

print(‘Start…’)

这就是动态语言的“鸭子类型”,它并不要求严格的继承体系,一个对象只要“看起来像鸭子,走起路来像鸭子”,那它就可以被看做是鸭子。

Python的“file-like object“就是一种鸭子类型。对真正的文件对象,它有一个read()方法,返回其内容。但是,许多对象,只要有read()方法,都被视为“file-like object“。许多函数接收的参数就是“file-like object“,你不一定要传入真正的文件对象,完全可以传入任何实现了read()方法的对象。

#

你可能感兴趣的:(python)