声明与 ?在C中
可能的重复:
如何使用条件运算符?
我是 C 语言新手语言,在我正在审查的一个示例代码中,我遇到了这样的语句:
A = A ? B: C[0]
我只是想知道上一条语句的任务是什么以及执行上述语句后的结果是什么。
Possible Duplicate:
How do I use the conditional operator?
I’m new to C language, and in one of the sample codes I was reviewing I faced the statement:
A = A ? B: C[0]
I was just wondering what the task of the previous statement is and what will be the result after execution of the mentioned statement.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
它称为三元运算符。 <代码>表达式?如果
expr
为 true,则 a : b 返回a
,如果为 false,则返回b
。expr
可以是布尔表达式(例如x > 3
)、布尔文字/变量或任何可转换为布尔值的内容(例如int)。int ret = expr ? a : b
等价于:三元运算符的好处是它是一个表达式,而上面的是语句,你可以嵌套表达式,但不能嵌套语句。所以你可以做类似
ret = (expr ? a : b) > 的事情0;
作为一个额外的花絮,Python >=2.6 对于等效操作的语法略有不同:
a if expr else b
。It's called a ternary operator.
expr ? a : b
returnsa
ifexpr
is true,b
if false.expr
can be a boolean expression (e.g.x > 3
), a boolean literal/variable or anything castable to a boolean (e.g. an int).int ret = expr ? a : b
is equivalent to the following:The nice thing about the ternary operator is that it's an expression, whereas the above are statements, and you can nest expressions but not statements. So you can do things like
ret = (expr ? a : b) > 0;
As an extra tidbit, Python >=2.6 has a slightly different syntax for an equivalent operation:
a if expr else b
.如果
A
为 true,则将B
的值分配给A
,否则C[0]
。?:
It assigns to
A
the value ofB
ifA
is true, otherwiseC[0]
.?:
结果=a>乙? x : y;
与此块相同:result = a > b ? x : y;
is identical to this block:它与
if else
语句相同。它可以重写为:
It's the same as an
if else
statement.It could be rewritten as:
如果 A 存在(非 NULL),则 A 被分配给 B,否则 C[0]。
A gets assigned to B if A exists (not NULL), otherwise C[0].
如果 A 等于 0,则 A = C[0] 否则 A = B
if A equal 0 then A = C[0] else A = B