What do we have to keep in mind when we write a subclass method?

If it's the subclass constructor, it needs to start with super()If we want to change an inherited method, we can override itIf we want to change an inherited method, we need to add extends to itThe subclass can't have the same methods as the superclass

Great! If we're talking about the constructor, it needs to start with super(). Regular methods of a superclass can be overridden by rewriting them.

Yikes! If we're talking about the constructor, it needs to start with super(). Regular methods of a superclass can be overridden by rewriting them.