Java Interview Questions on Inner Classes

1. What are nested classes in java? Class declared with in another class is defined as nested class.There are two types of nested classes in java.1) Static nested class : static nested class has static keyword declared before class definition2) Non static nested class : Nested classes without any static keyword declaration . 2. What … Continue reading Java Interview Questions on Inner Classes