Abstract keyword in Java

Abstract in java is used to represent that there is no concrete implementation. The abstract keyword in Java is used to declare a class or a method as abstract. An ” abstract class ” can have abstract methods which have to be implemented by its concrete sub classes. An ” abstract method ” does not […]

Share this article on