I am new to Java. I have been researching the notion of an abstract class.
I understand that abstract classes cannot be instantiated. So an abstract subclass could not be instantiated with new in the abstract base class.
However, I have been looking for a driver/main class that is abstract to study since instantiating is not allowed.
Example:
public abstract class Research{
public static void main(String [] args){
[Code here
}
}
Can anyone please explain what a driver/main class for an abstract class would look like? Thank you.