码迷,mamicode.com
首页 > 其他好文 > 详细

2020年1月15日 MRKJ 继承 page197

时间:2020-01-16 00:56:41      阅读:76      评论:0      收藏:0      [点我收藏+]

标签:color   style   none   信息   def   __init__   sel   继承   gre   

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

2020年1月15日 MRKJ 继承 page197

标签:color   style   none   信息   def   __init__   sel   继承   gre   

原文地址:https://www.cnblogs.com/python1988/p/12199156.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!