Java Member inner class

A non-static class that is created inside a class but outside a method is called member inner class.

Syntax:
class Outer { //code class Inner { //code } }
Java Member inner class example

In this example, we are creating msg() method in member inner class that is accessing the private data member of outer class.

class Test { private int data=31; class Inner { void msg(){System.out.println("data is "+data);} } public static void main(String args[]){ Test obj=new Test(); Test.Inner in=obj.new Inner(); in.msg(); } }


Output:
data is 31
Internal working of Java member inner class

The java compiler creates two class files in case of inner class. The class file name of inner class is "Outer$Inner". If you want to instantiate inner class, you must have to create the instance of outer class. In such case, instance of inner class is created inside the instance of outer class.

Internal code generated by the compiler

The java compiler creates a class file named Outer$Inner in this case. The Member inner class have the reference of Outer class that is why it can access all the data members of Outer class including private.

import java.io.PrintStream; class Outer$Inner { final Outer this$0; Outer$Inner() { super(); this$0 = Outer.this; } void msg() { System.out.println((new StringBuilder()).append("data is ") .append(Outer.access$000(Outer.this)).toString()); } }



Instagram