public static void main(String[] args){ int j = 0; for(int i = 0; i < 100; i++) j = j++; System.out.println(j); }
输出结果:0
原因:j=j++;可以换成如下写法:temp = j; j=j+1; j=temp;
原文地址:https://www.cnblogs.com/xingrui/p/9552183.html
时间: 2024-11-10 19:26:15
public static void main(String[] args){ int j = 0; for(int i = 0; i < 100; i++) j = j++; System.out.println(j); }
输出结果:0
原因:j=j++;可以换成如下写法:temp = j; j=j+1; j=temp;
原文地址:https://www.cnblogs.com/xingrui/p/9552183.html