You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We can’t create instance(interface can’t be instantiated) of interface but we can make reference of it that refers to the Object of its implementing class.
3
+
4
+
A class can implement more than one interface.
5
+
6
+
An interface can extends another interface or interfaces (more than one interface) .
7
+
8
+
A class that implements interface must implements all the methods in interface.
9
+
10
+
All the methods are public and abstract. And all the fields are public, static, and final.
0 commit comments