Computer Science, asked by tiyasadas8666, 1 year ago

Define interface expalin interface providers with example in software designing

Answers

Answered by Deepikaroy
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