Java赋值运算符行为与C
作者:互联网
这是在我处理“Cracking the Coding interview”问题时发生的:
Write a function to swap a number in place (that is, without temporary variables)
我决定用Java编写我的解决方案(因为我计划在实习面试中使用Java.)
我提出了一个解决方案,我几乎确信这是正确的答案(因为我在一行中做到了):
public static void main(String args[]) {
int a = 5;
int b = 7;
a = b - a + (b = a);
System.out.println("a: " + a + " b: " + b);
}
当然,这段代码可以执行所需的结果. a == 7和b == 5.
现在这是有趣的部分.
此代码不会在C中运行,也不是本书后面的解决方案.
所以我的问题是:为什么我的解决方案确实有效?我假设Java的做法与其他语言有所不同?
解决方法:
看Java Language Specification, section 15.7 (Evaluation Order):
The Java programming language guarantees that the operands of
operators appear to be evaluated in a specific evaluation order,
namely, from left to right.
所以在Java中,评估顺序是明确定义的,并且符合您的期望.
C规范没有提供这样的保证;实际上它是未定义的行为,所以程序可以完全做任何事情.
引自cppreference,注意到对算术运算符的操作数排序没有排序规则:
If a side effect on a scalar object is unsequenced relative to a value
computation using the value of the same scalar object, the behavior is
undefined.
标签:java,c-2,variable-assignment,assignment-operator 来源: https://codeday.me/bug/20190519/1136700.html