Skip to content

Latest commit

 

History

History
63 lines (51 loc) · 1.69 KB

MemberInner.md

File metadata and controls

63 lines (51 loc) · 1.69 KB

Java Member inner class

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

Syntax:

classOuter{ //code classInner{ //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.

classTestMemberOuter1{ privateintdata=30; classInner{ voidmsg(){System.out.println("data is "+data);} } publicstaticvoidmain(Stringargs[]){ TestMemberOuter1obj=newTestMemberOuter1(); TestMemberOuter1.Innerin=obj.newInner(); in.msg(); } } 

Output

data is 30 

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.

importjava.io.PrintStream; classOuter$Inner { finalOuterthis$0; Outer$Inner() { super(); this$0 = Outer.this; } voidmsg() { System.out.println((newStringBuilder()).append("data is ") .append(Outer.access$000(Outer.this)).toString()); } } 
close