/*
内部类定义在局部,即在外部类的方法中再定义一个内部类。
1,不可以被成员修饰符修饰
2,可以直接访问外部类中的成员,但不可以访问局部中的变量,除非这变量被finnal修饰
*/
class Outer
{
int x = 2;
void method(final int a)
{
final int y = 4;
class Inner
{
void function()
{
System.out.println(y);
}
}
new Inner().function();
}
}
class InnerClassDemo3
{
public static void main(String[] args)
{
Outer out = new Outer();
out.method(3);
}
}
|
|