int i =10; i=i++;//10 System.out.println(i); i=i++;的底层等于以下步骤: int temp=i; i=i+1; i=temp; 所以,以上计算的输出结果为10.