gpt4 book ai didi

c - c语言中if(!variable_name)是什么意思

转载 作者:行者123 更新时间:2023-12-04 11:31:16 25 4
gpt4 key购买 nike

这个问题不太可能对任何 future 的访客有帮助;它只与一个小的地理区域、一个特定的时间点或一个非常狭窄的情况相关,通常不适用于互联网的全局受众。如需帮助使这个问题更广泛适用,visit the help center .




8年前关闭。




这是问题所在

int main() {
int pid = fork();
if (!pid) {
// condition 1
} else {
// condition 2
}
return 0;
}

什么 (!pid)做?

最佳答案

它相当于:

if (!pid != 0) /* ... */

进而:
if (pid == 0) /* ... */

C11 (n1570), § 6.5.3.3 Unary arithmetic operators

The result of the logical negation operator ! is 0 if the value of its operand compares unequal to 0, 1 if the value of its operand compares equal to 0. The result has type int. The expression !E is equivalent to (0==E).

关于c - c语言中if(!variable_name)是什么意思,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13952423/

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