VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > Python基础教程 >
  • python魔术方法详解(2)

 

特殊的和构造方法

重写是继承机制中的一个重要内容,对一于构造方法尤其重要。看下面的例子:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
class Bird:
    def __init__(self):
        self.hungry= True
    def eat(self):
        if self.hungry:
            print 'Aaaah...'
            self.hungry= False
        else:
            print 'No, thanks!'
>>> b= Bird()
>>> b.eat()
Aaaah...
>>> b.eat()
No, thanks!

 

这个类中定义了鸟有吃的能力, 当它吃过一次后再次就会不饿了,通过上面的执行结果可以清晰的看到。

那么用SongBird类来继承Bird 类,并且给它添加歌唱的方法:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
class Bird:
    def __init__(self):
        self.hungry= True
    def eat(self):
        if self.hungry:
            print 'Aaaah...'
            self.hungry= False
        else:
            print 'No, thanks!'
             
class SongBird(Bird):
         def __init__(self):
                 self.sound= 'Squawk!'
         def sing(self):
                 print self.sound
>>> s= SongBird()
>>> s.sing()
Squawk!
>>> s.eat()
Traceback (most recent call last):
  File "<pyshell#26>", line1,in <module>
    s.eat()
  File "C:/Python27/bird", line6,in eat
    if self.hungry:
AttributeError:'SongBird' object has no attribute'hungry'

相关教程