问答详情
源自:3-2 Java中的算术运算符

不明白为什么a的值会变化

int a=5;

int b=++a;

System.out.println(a);

 System.out.println(b);

a已经被赋值了,第二行是在给b赋值,为什么会改变a的赋值?


提问者:慕沐3164649 2018-04-19 23:07

个回答

  • Firelord
    2018-04-19 23:33:22
    已采纳

    b=++a;先处理++a,a自增1并赋值给a,a=6;再处理赋值,b=a

  • 我就是要乱来
    2018-04-19 23:31:48

    因为使用了先自增后使用的运用;