How-to articles, tricks, and solutions about ABSTRACT-CLASS
Can an abstract class have a constructor?
Yes, an abstract class can have a constructor in Java.
How should I have explained the difference between an Interface and an Abstract class?
An interface is a collection of abstract methods that define a set of functions that a class must implement.
Interface or an Abstract Class: which one to use?
An interface defines a set of methods that a class must implement, but does not provide any implementation for those methods.