Java Member inner class
A non-static class that is created inside a class but outside a method is called member inner class.
Syntax:
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.
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.
0 comments:
Post a Comment
Let us know your responses and feedback