java

Abstract Class in Java

Abstract Class in Java is a kind of class. Abstract class is the partial template class whereas some methods are in define from and some are declare form. The abstract class contains both normal method and abstract method . The abstract class can be define using abstract keyword. This class has no individual meaning means we cannot create the object of the abstract class but we can use it by inherit with some other class.