static问题
多多指点啊
class Take
{
static int x;
}
class A
{
Take A1=new Take();
Take A2=new Take();
A1.x=10;
A2.x=60;
public static void main(String args[])
{
System.out.println("A1.x is"+A1.x);
System.out.println("A2.x is"+A2.x);
}
}
这个错那了啊 怎么也不能编译通过