why interface methods concrete
interface methods
Collapse
X
-
Tags: None
-
Hi Tanvir,
First of all, interface methods are not concrete they are implicitly abstract. means if you dont add the abstract keyword with method.then also they are abstract.
In order to implement an interface, You must have to provide implementation for all the methods declared in an interface.
Comment