本帖最后由 java_learner 于 2014-7-10 23:12 编辑
- public class Test {
- int num = 1;
- {
- num = 2;
- }
- public static void main(String args[]) {
- Test test = new Test();
- System.out.println(test.num); //输出结果为2
- }
- }
- public class Test {
-
- {
- num = 2;
- }
-
- int num = 1;
- public static void main(String args[]) {
- Test test = new Test();
- System.out.println(test.num); //输出结果为什么是1 而不是2 呢?
- }
- }
复制代码
|
|