class Outer
{
static class Inner
{
int x=5;
public void show()
{
System.out.println(x);
}
}
static public void method()
{
Inner i=new Inner();
i.show();
}
}
class OutInnerDemo
{
public static void main(String[] args)
{
Outer.method();
}
}
这个编译和运行是通过的,想问下静态不是只能访问静态吗,想问下 1.在静态方法method()里面也可以创建对象吗 2.静态方法method()里也可以访问非静态的show()方法吗 |