2020年1月15日 MRKJ 继承 page197

class CLASSNAME(base)

  ‘’‘类的帮助信息’‘’

  statement

class Fruit:
    color='green'
    def harvest(self,color):
        print('I am %s'%color)
        print(Fruit.color)

class Apple(Fruit):
    color = 'red'
    def __init__(self):
        print('apple')

class Orange(Fruit):
    color='yellow'
    def __init__(self):
        print('orange')

a=Apple()
o=Orange()
print(a.harvest(Apple.color))
print(o.harvest(Orange.color))

》》》》

apple
orange
I am red
green
None
I am yellow
green
None

猜你喜欢

转载自www.cnblogs.com/python1988/p/12199156.html