Static Inner Class

If static class B is inside class A => class B is static and an Inner Class

main()
{ 
A.B obj1 = new A.B();
}

//If j is member of class B
obj1.j=5;

Backlinks