Python: How to copy all attibutes from base class to derived one

后端 未结 2 1696
Happy的楠姐
Happy的楠姐 2021-01-20 06:29

I want to achieve the following:

#!/usr/bin/python
class SuperHero(object): 
    def setName(self, name):
        self.name = name
    def getName(self):
            


        
2条回答
  •  -上瘾入骨i
    2021-01-20 07:02

    I'd prefer explicit solution - copying one by one. Martijn Pieters's solution is nice, but with time your __dict__ may grow and you may not want to copy all it's content (or worse - forget about this fact and experience some nasty side effects). Besides the Zen of Python says: Explicit is better than implicit..

    Side note - you are aware of properties, right? So your code could be more pythonic if you used them:

    class SuperHero(object):
        @property
        def name(self):
            return self._name
        @name.setter
        def name(self, name):
            self._name = name
    
    sh = SuperHero()
    sh.name = "Clark Kent" 
    

提交回复
热议问题