Java

Inner classes in Java

Inner classes in Java

Inner classes are classes that are defined within another class. 
● Member inner classes: These classes are defined within another class and have access to the instance variables and methods of the enclosing class. 
● Local inner classes: These classes are defined within a method and have access to the final variables of the enclosing method. 
● Anonymous inner classes: These classes are defined without a name and are typically used to provide a single-method implementation. 

Let us look into the example of these three: 

Member Inner Class

class MyOuterClass { 
private int x; 
class MyInnerClass { 
public void printX() { 
System.out.println(x); 
} 
} 
} 

This example defines an inner class called MyInnerClass within the MyOuterClass. The MyInnerClass has access to the private variable x of the MyOuterClass. 

Local Inner Class:

class MyOuterClass { 
public void printSquare(final int x) { 
class Square { 
public void print() { 
System.out.println(x*x); 
} 
} 
Square s = new Square(); 
s.print(); 
} 
} 

This example defines a local inner class called Square within the printSquare method of the MyOuterClass. The Square class has access to the final variable x of the printSquare method. 

Anonymous Inner Class: 

class MyOuterClass { 
public void performAction(final int x) { 
new Action() { 
public void execute() { 
System.out.println(x*x); 
} 
}.execute(); 
} 
interface Action { 
public void execute(); 
} 
} 

This example defines an anonymous inner class that implements the Action interface within the performAction method of the MyOuterClass. The anonymous inner class has access to the final variable x of the performAction method. 
Inner classes are often used to encapsulate functionality within a class or to provide additional functionality to a class. They can also be useful when working with events, as they can be used to define event handlers. 
 

Top course recommendations for you

    Data Structures in C
    2 hrs
    Beginner
    152.7K+ Learners
    4.41  (6675)
    Introduction to R
    1 hrs
    Beginner
    150.4K+ Learners
    4.58  (6308)
    Excel for Beginners
    5 hrs
    Beginner
    1M+ Learners
    4.49  (44476)
    Excel for Intermediate Level
    3 hrs
    Intermediate
    184.8K+ Learners
    4.56  (8051)
    My SQL Basics
    5 hrs
    Beginner
    236.9K+ Learners
    4.32  (19)
    Android Application Development
    2 hrs
    Beginner
    142.8K+ Learners
    4.41  (4707)
    OOPs in Java
    2 hrs
    Beginner
    100.4K+ Learners
    4.43  (4497)
    Building Games using JavaScript
    2 hrs
    Beginner
    29.5K+ Learners
    4.47  (420)
    Introduction to DevOps
    3 hrs
    Beginner
    54.9K+ Learners
    4.58  (2414)
    Introduction To AngularJS
    2 hrs
    Beginner
    22.8K+ Learners
    4.54  (865)