Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
你好 Stackoverflowers,
考虑到下面的预增量加法,你能解释一下为什么 j = 8 在下面的代码中吗?
int i = 2; int j = ++i + ++i; //j = 8, why ??