声明与 ?在C中

发布于 2024-10-04 00:36:17 字数 304 浏览 6 评论 0原文

可能的重复:
如何使用条件运算符?

我是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

§普罗旺斯的薰衣草 2024-10-11 00:36:17

它称为三元运算符。 <代码>表达式?如果 expr 为 true,则 a : b 返回 a,如果为 false,则返回 bexpr 可以是布尔表达式(例如x > 3)、布尔文字/变量或任何可转换为布尔值的内容(例如int)。

int ret = expr ? a : b 等价于:

int ret;
if (expr) ret = a;
else ret = b;

三元运算符的好处是它是一个表达式,而上面的是语句,你可以嵌套表达式,但不能嵌套语句。所以你可以做类似 ret = (expr ? a : b) > 的事情0;

作为一个额外的花絮,Python >=2.6 对于等效操作的语法略有不同:a if expr else b

It's called a ternary operator. expr ? a : b returns a if expr 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:

int ret;
if (expr) ret = a;
else ret = b;

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.

〃安静 2024-10-11 00:36:17

如果 A 为 true,则将 B 的值分配给 A,否则 C[0]

?:

It assigns to A the value of B if A is true, otherwise C[0].

?:

缺⑴份安定 2024-10-11 00:36:17

结果=a>乙? x : y; 与此块相同:

if (a > b) {
  result = x;
}
else
{
  result = y;
}

result = a > b ? x : y; is identical to this block:

if (a > b) {
  result = x;
}
else
{
  result = y;
}
揪着可爱 2024-10-11 00:36:17

它与 if else 语句相同。

它可以重写为:

if ( A != 0 )
{
    A = B;
}
else
{
    A = C[ 0 ];
}

It's the same as an if else statement.

It could be rewritten as:

if ( A != 0 )
{
    A = B;
}
else
{
    A = C[ 0 ];
}
影子是时光的心 2024-10-11 00:36:17

如果 A 存在(非 NULL),则 A 被分配给 B,否则 C[0]。

A gets assigned to B if A exists (not NULL), otherwise C[0].

夜访吸血鬼 2024-10-11 00:36:17

如果 A 等于 0,则 A = C[0] 否则 A = B

if A equal 0 then A = C[0] else A = B

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文