Loading video...
QuickNotes™ 
Inner Classes
Inner classes are created inside existing classes and are not a direct member of a package.
Inner classes are created the same way regular classes are made, but they are treated like a class variable.
There are 4 types of inner classes:
Static member: Work like other static members and has access to all static methods of the class.
Member: Work like a normal member and has access to all methods and members of the class.
Local: Are declared locally within a block of code and are only visible within the block and work like any local variable.
Anonymous : are local classes with no name.
Discussion 
Please login to ask a question and view discussion.













