V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX 提问指南
rebeccaMyKid
V2EX  ›  问与答

子类的变量在父类里用,感觉有点问题,有更好的写法吗?

  •  
  •   rebeccaMyKid · 2017-08-17 18:32:42 +08:00 · 814 次点击
    这是一个创建于 2415 天前的主题,其中的信息可能已经有所发展或是发生改变。
    #python
    
    class Parent(object):
        def __init__(self):
            pass
        
        def print_sth(self):
            print self.name
            
            
    class ChildA(Parent):
        def __init__(self):
            self.name = 'childA'    
            super(ChildA, self).__init__()
        
        
    class ChildB(Parent):
        def __init__(self):
            self.name = 'childB'    
            super(ChildB, self).__init__()
    
    
    class ChildC(Parent):
        def __init__(self):
            self.name = 'childC'    
            super(ChildC, self).__init__()
    
    children = [
        ChildA(),
        ChildB(),
        ChildC()
    ]
    
    for child in children:
        child.print_sth()
    

    父类有个方法是要用到子类的属性的,然后这个属性又是 hardcode,这样写能跑,但是感觉好像不太好,又想不到其他的方法,面向对象老司机能给点建议吗?

    1 条回复    2017-08-17 21:32:28 +08:00
    wwqgtxx
        1
    wwqgtxx  
       2017-08-17 21:32:28 +08:00 via iPhone   ❤️ 1
    在父类的__init__中定义这个 name,然后给父类的__init__加上 name 这个参数,子类在调用 super 的时候把 name 传进去就好了
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   1013 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 26ms · UTC 19:30 · PVG 03:30 · LAX 12:30 · JFK 15:30
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.