In Java, the “abstract” annotation to a method indicates that the method MUST be overridden in a subclass.
A “static” method or variable cannot be overridden by subclasses.
Hi