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

class继承

时间:2018-05-20 16:42:09      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:red   继承   object   self   ase   class   sel   pre   init   

class  Lz(object):
def __init__(self):
self.money=1000000000000
self.house=‘大别野‘
def sing(self):
print(‘唱歌‘)
def dance(self):
print(‘跳广场舞‘)
def lm(self):
print(‘找朋友‘)
class Zlz(Lz):
def dance(self):#重写了父类的方法,那么已当前的为准
print(‘霹雳舞‘)
class Base(object):
def __init__(self,host,port,password):
self.host=host,
self.port=port,
self.password=password
class MySql(Base):
pass
class Redis(Base):
pass

zx=Zlz()
zx.sing()#可以直接调用父类的方法
zx.dance()
print(zx.money)

class继承

标签:red   继承   object   self   ase   class   sel   pre   init   

原文地址:https://www.cnblogs.com/irisx/p/9063397.html

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