An interface i.e. declared within another interface or class is known as nested interface. The nested interfaces are used to group related interfaces so that they can be easy to maintain. The nested interface must be referred by the outer interface or class. It can't be accessed directly.
There are given some points that should be remembered by the java programmer.
interface interface_name{ ... interface nested_interface_name{ ... } }
class class_name{ ... interface nested_interface_name{ ... } }
In this example, we are going to learn how to declare the nested interface and how we can access it.
interface Showable{ void show(); interface Message{ void msg(); } } class TestNestedInterface1 implements Showable.Message{ public void msg(){System.out.println("Hello nested interface");} public static void main(String args[]){ Showable.Message message=new TestNestedInterface1();//upcasting here message.msg(); } }
As you can see in the above example, we are acessing the Message interface by its outer interface Showable because it cannot be accessed directly. It is just like almirah inside the room, we cannot access the almirah directly because we must enter the room first. In collection frameword, sun microsystem has provided a nested interface Entry. Entry is the subinterface of Map i.e. accessed by Map.Entry.
The java compiler internally creates public and static interface as displayed below:.
public static interface Showable$Message { public abstract void msg(); }
Let's see how can we define an interface inside the class and how can we access it.
class A{ interface Message{ void msg(); } } class TestNestedInterface2 implements A.Message{ public void msg(){System.out.println("Hello nested interface");} public static void main(String args[]){ A.Message message=new TestNestedInterface2();//upcasting here message.msg(); } }
If we define a class inside the interface, java compiler creates a static nested class. Let's see how can we define a class within the interface:
interface M{ class A{} }