Tag Java Method Local Inner Class

Method Local Inner Class in Java

Method local inner class in Java

An inner class that is declared inside a method of the outer class is called method local inner class in Java. Its scope is limited to the block of a method in which it is declared. Therefore, the declaration of method…