Java Seminar
Java Seminar
ABSTRACT METHODS
AND INTERFACES
ABSTRACT CLASSES
A class that is declared with abstract keyword, is
known as abstract class in java. It can have
abstract and non-abstract methods (method with
body).
Syntax:
1. public abstract class Shape{
Interface (100%)
ABSTRACT CLASSES
A class must be declared abstract if any of the following
condition is true
Circle Rectangle
-radius: double -width: double