java-坑及错题

2024.7.13

1.

int count = 0;
count = count++;

运行之后count为0

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

posted @ 2024-07-13 20:39  sellingpear  阅读(1)  评论(0编辑  收藏  举报