==IMPORTANT== : You can't create an object of a abstract class hence if you want to create an object then simply inherit that class with another class and create an object of that instead.
A class which is declared with the abstract keyword is known as an abstract class in Java. It can have abstract and non-abstract methods (method with the body). Before learning the Java abstract class ...