Chapter 11: Problem 2
What does it mean to say there is an “is a” relationship between two objects?
Chapter 11: Problem 2
What does it mean to say there is an “is a” relationship between two objects?
All the tools & learning materials you need for study success - in one app.
Get started for freeIn this section we discussed superclasses and subclasses. Which is the general class, and which is the specialized class?
Look at the following code, which is the first line of a class definition. What is the name of the superclass? What is the name of the subclass? class Canary (Bird):
Look at the following class definitions: class Vegetable: def _ _init_ _(self, vegtype): self._ _vegtype = vegtype def message(self): print("I'm a vegetable.") class Potato(Vegetable): def _ _init_ _(self): Vegetable._ _init_ _(self, 'potato') def message(self): print("I'm a potato.") Given these class definitions, what will the following statements display? v = Vegetable('veggie') p = Potato() v.message() p.message()
What does a subclass inherit from its superclass?
What do you think about this solution?
We value your feedback to improve our textbook solutions.