Tag: class
-
Difference among Class, Interface and Abstract class
CLASS Supports only concrete methods (Method with heading and body). Do not support abstract methods. We can declare class as a final type. It supports variable. It supports constants which should be declare as final. By default, access modifier of class is default. It supports constructors. Instance methods are allowed. It supports static method since…