给定java代码,如下: public class Test{ static int i; public int aMethod( ){ i++; return i; } public static void main(String [] args){ Test test = new Test( ); test.aMethod( ); System.out.println(test.aMethod( )); } }编译运行后,输出结果是( )。 想知道被static修饰的变量,是在内存中什么位置?
|