gpt4 book ai didi

c - 将在短路评估中首先执行 (a&&b)

转载 作者:行者123 更新时间:2023-11-30 21:32:40 24 4
gpt4 key购买 nike

假设我有以下代码:

if (a&&b)
{
...
}

第一个问题,在这种情况下谁决定使用短路评估?编译器还是 C 标准?

第二个问题,首先评估哪一个? ab 。顺序是由谁决定的,有没有办法改变我的代码中的顺序?

最佳答案

  1. 标准要求进行短路评估。

  2. 总是a在前。您无法在程序中更改它。

引用:6.5.13 逻辑 AND 运算符,第 4 段:

Unlike the bitwise binary & operator, the && operator guarantees left-to-right evaluation; if the second operand is evaluated, there is a sequence point between the evaluations of the first and second operands. If the first operand compares equal to 0, the second operand is not evaluated.

关于c - 将在短路评估中首先执行 (a&&b),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17797964/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com