2024.7.13
1.
int count = 0; count = count++;
运行之后count为0
这个运行的时候会先将count++返回的0暂存,然后自增,最后将暂存的0赋值给count,所以结果为0