Esempio n. 1
0
    def __init__(self, *args, **kwargs):
        # So instead we explicitly call __init__ for all ancestors.
        # The use of *args and **kwargs allows for a clean way to pass arguments,
        # with each parent "peeling a layer of the onion".
        Superhero.__init__(self, 'anonymous', movie=True, 
                           superpowers=['Wealthy'], *args, **kwargs)
        Bat.__init__(self, *args, can_fly=False, **kwargs)

        # override the value for the name attribute
        self.name = 'Sad Affleck'
Esempio n. 2
0
 def __init__(self, *args, **kwargs):
     # Typically to inherit attributes you have to call super:
     # super(Batman, self).__init__(*args, **kwargs)
     # However we are dealing with multiple inheritance here, and super()
     # only works with the next base class in the MRO list.
     # So instead we explicitly call __init__ for all ancestors.
     # The use of *args and **kwargs allows for a clean way to pass arguments,
     # with each parent "peeling a layer of the onion".
     Superhero.__init__(self, 'anonymous', movie=True,
                        superpowers=['Wealthy'], *args, **kwargs)
     Bat.__init__(self, *args, can_fly=False, **kwargs)
     # override the value for the name attribute
     self.name = 'Sad Affleck'
 def __init__(self, *args, **kwargs):
     # Обычно для наследования атрибутов необходимо вызывать super:
     # super(Batman, self).__init__(*args, **kwargs)
     # Однако здесь мы имеем дело с множественным наследованием, а super()
     # работает только со следующим базовым классом в списке MRO.
     # Поэтому вместо этого мы вызываем __init__ для всех родителей.
     # Использование *args и **kwargs обеспечивает чистый способ передачи
     # аргументов, когда каждый родитель "очищает слой луковицы".
     Superhero.__init__(self, 'анонимный', movie=True,
                        superpowers=['Богатый'], *args, **kwargs)
     Bat.__init__(self, *args, can_fly=False, **kwargs)
     # переопределить значение атрибута name
     self.name = 'Грустный Бен Аффлек'
Esempio n. 4
0
 def __init__(self, *args, **kwargs):
     # Typically to inherit attributes you have to call super:
     #super(Batman, self).__init__(*args, **kwargs)      
     # However we are dealing with multiple inheritance here, and super()
     # only works with the next base class in the MRO list.
     # So instead we explicitly call __init__ for all ancestors.
     # The use of *args and **kwargs allows for a clean way to pass arguments,
     # with each parent "peeling a layer of the onion".
     Superhero.__init__(self, 'anonymous', movie=True, 
                        superpowers=['Wealthy'], *args, **kwargs)
     Bat.__init__(self, *args, can_fly=False, **kwargs)
     # override the value for the name attribute
     self.name = 'Sad Affleck'