Interfaces
Definition:
In java programming language, an interface is an abstract, conceptual or concrete type that is used to specify an interface.
How to use an interface:
- By using the key word interface, we can fully abstract a class interface from its implementation.
It means that, using interface, we can specify what a class must do, but not how it does it.
- Read more about Interfaces
- Log in or register to post comments
- 57 views