163k views
4 votes
Identify three different meanings of the word "interface" in Java Programing language.

User Marquinio
by
6.0k points

1 Answer

4 votes

Answer: Interface methods, interface variables and interface markers.

Step-by-step explanation:

Interface methods are public and abstract by default.

Interface variables can be declared public, static and final

Marker interfaces are simply empty interfaces without any methods.

User Snedecor
by
6.3k points