int num = 50;num = num++ *2;System.out.println(num);输出结果为: 100原因:num++整体取值为自增之前的值,即50,但是 num 本身已经加了1,即 num = 51。