Java
Programming and Technical
General Ability
General Knowledge
What is the use of interface?
Read Solution (Total 2)
-
- interface is used to achieve abstraction
- 7 years agoHelpfull: Yes(1) No(0)
- interface is a fully unimplimented class it means it does'nt have any implimentations of an object instead of it have only declarations of an object it means by using interface we are gathering a real world object requirements and further those are implimented by sub classes.
By using interfaces we can achieve multiple inheritance.
And we can provide a bridge between user class and sub classes. - 7 years agoHelpfull: Yes(0) No(0)
Java Other Question