本帖最后由 shisishishisi 于 2014-6-6 12:47 编辑
- [code]class Test2
- {
- public static void main(String[] args)
- {
- int x=0,y=1;
- if(++x==y--&x++==1||--y==0)
- //1==1 & 1 == 1 || 0 ==0 x=2,y=0
- // true & true || true
- //true || true
- //true
- System.out.println("x="+x+",y="+y);//x=2,y=0
- else
- System.out.println("y ="+y+",x="+x);
-
- }
- }
复制代码 [/code] |