There are currently no frequently asked questions associated with this exercise – that’s where you come in! You can contribute to this section by offering your own questions, answers, or clarifications on this exercise. Ask or answer a question by clicking reply () below.
If you’ve had an “aha” moment about the concepts, formatting, syntax, or anything else with this exercise, consider sharing those insights! Teaching others and answering their questions is one of the best ways to learn and stay sharp.
Join the Discussion. Help a fellow learner on their journey.
Ask or answer a question about this exercise by clicking reply () below!
You can also find further discussion and get answers to your questions over in Language Help.
Agree with a comment or answer? Like () to up-vote the contribution!
So, what’s the point of adding an abstract method to the Animal class? Wouldn’t the Cat class throw an error if I called make_noise() and hadn’t defined it there whether the Animal class had the abstract method or not?
I’m curious about this to. I commented out the @abstractmethod and ran the program with the say_id() in the childclass and it ran just fine. I’m still not sure why I would use the @abstractmethod and not just delete it from the parentclass.
I am confused as well. I see no point in it and it changes nothing when I just comment it all out in the abstract class. Came to this forum hoping to find an answer but unfortunately there isn’t one.
I don’t think that the whole explanation makes a point. Also I agree that narrative confuses and distracts, like “The .__init__() method still requires a name, since we feel all animals deserve a name.”
@kimsergeo posted a good link that provides some light on this. From what I can tell, the @abstractmethod decorator allows you to organize your classes by declaring the methods that you want to be apart of the AbstractEmployee subclasses.
If you try to make a method called ‘print_id’ instead of ‘say_id’ within the Employee class it will give you an error. The @abstractmethod allows us to set the name of the methods that we want all of our subclasses to have.