通常如何在程序中读取逻辑表达式?例如:
(1 == x) && ( 2 > x++)? (x=1)
?
的目的是什么,以及为表达式生成正确答案的思维方式是什么?
答案 0 :(得分:1)
以下语句:
var value = (boolean expression) ? some value if `true` : some value if `false`
这是一个特殊的条件语句,它使用Ternary Operator(?:
)来根据布尔表达式将值分配给变量。
这是表达此条件语句的一种更为简洁的方法:
var value;
//this is the boolean expression you evaluate before the question mark
if (boolean expression is true) {
//this is what you assign after the question mark
value = some value if true;
}
else {
//this is what you assign after the colon
value = some other value if false;
}
因此,根据您的示例(语法错误,顺便说一句),结果将是这样的:
if ((1 == x) && (2 > x++)){
x = 1;
}
else {
/*This is the value that would be put after the colon
*(which is missing in your example, and would cause a compiler error)
*/
x = some other value;
}
这将翻译为:
x = (1 == x) && (2 > x++) ? 1 : some other value
答案 1 :(得分:1)
该语句甚至不会编译,?
与:
一起用作三元运算符。
在(x=1)
之后,您应该拥有else分支,只是一个例子:
(1 == x) && ( 2 > x++) ? (x=1) : (x = 2)
此布尔表达式的求值方式如下,假设x为1:
(1 == x)
= true (2 > x++)
=假true && false
=假无论x的值如何,您的表达式始终为false
答案 2 :(得分:1)
(1 == x) && ( 2 > x++)? (x=1);
?
代表三元运算。 ,如果?
的左侧为true,则紧接在右侧。
在您的情况下,如果( 2 > x++)
为true,则x
的值为1,但是要向( 2 > x++)
行进,您的左表达式必须为true,这意味着x==1
,因此,如果
(1 == x)
是真实的,因此( 2 > x++)
是真实的,那么您的整体状况为真实。
答案 3 :(得分:1)
除了有关?的相关注释: 必需 的地方,还需要以下内容来“理解”示例中的代码操作: / p>
&&的评估顺序意味着,除非((1 == x)'为真,否则所有(strong> 不 )都将被评估为((2> x ++))。特别意味着x ++不会产生副作用。
´x = 1´是一个 赋值 ,因此乍一看看起来不像是一个求值的表达式,但是在Java中赋值本身就是表达式承担要分配的值。