0% found this document useful (0 votes)
12 views1 page

Inner Class

Uploaded by

sajood
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
12 views1 page

Inner Class

Uploaded by

sajood
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

// Demonstrate an inner class.

class Outer
{
int x = 100;

class Inner
{
void display()
{
System.out.println("Inner_display: x = " + x);
}// inner class display
} //end inner class

void display()
{
System.out.println("Outer_display: x = " + x);
Inner in = new Inner();
in.display();
}// outer class display

}// end outer class

class InnerClassDemo
{
public static void main(String args[])
{
Outer out = new Outer();
out.display();

}
}

You might also like