Define interface expalin interface providers with example in software designing
Answers
Answered by
0
An interface is just like Java class, but it only has static constants and abstract method. Java uses Interface to implement multiple inheritance. A Java class can implement multiple Java interfaces. All methods in an interface are implicitly public and abstract.
To use an interface in your class, apend
Similar questions