We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
如果 i = i++; 等价于:
i = i++;
i = i; i++;
为什么在 atom 上运行时,
i = 1; System.out.println(i); i = i++; System.out.println(i);
出现的结果为:
1 1
The text was updated successfully, but these errors were encountered:
第一句话就有问题哦,不等价~;i++在赋值之前就完成了。
Sorry, something went wrong.
No branches or pull requests
如果
i = i++;
等价于:为什么在 atom 上运行时,
出现的结果为:
The text was updated successfully, but these errors were encountered: