[讨论]大家认为这个程序输出什么结果
public class X (private static int a;
public static void main(String [] args) {
modify(a);
System.out.println(a);
}
public static int modify(int a) {
a++;
return a;
}
}
大家认为结果会是什么? 说出你的见解 不要只是一个答案
PS:不要运行啊
[此贴子已经被作者于2006-8-9 17:15:00编辑过]