美文网首页
python 继承的一些问题

python 继承的一些问题

作者: 乘风破浪emo | 来源:发表于2016-12-13 00:21 被阅读0次

在写python继承的时候突然想到,继承的时候子类的self是否继承了父类的self,于是尝试了一下:

class foo(object):
    def add(self,strin):
        self.strin=strin
    def say(self):
        print "string is : %s" % self.strin
class bar(foo):
    def saybar(self):
        print "Created By Bar , i say : %s " % self.strin

b=bar()
b.add('hello')
b.say()
b.saybar()

运行结果如下:

string is : hello
Created By Bar , i say :hello 

相关文章

网友评论

      本文标题:python 继承的一些问题

      本文链接:https://www.haomeiwen.com/subject/fmevmttx.html