gpt4 book ai didi

c++ - : "int i, (!!i)"?是什么意思

转载 作者:搜寻专家 更新时间:2023-10-30 23:55:43 25 4
gpt4 key购买 nike

我们有以下 C++ 代码:

int i;
(!!i);

变量i的操作是什么?

最佳答案

我已经看到这样做是为了防止出现有关“警告,变量 i 未使用” 的警告。

在奇怪的 !!i 语句之后,现在(技术上)在表达式中使用变量,因此警告被抑制,但实际上并没有改变任何东西。

例子:

void MyFunc()
{
int i;
(!!i); // Suppress the warning caused by the block below.
#if DEBUG // In Retail / Non-Debug code, i is not used, and a warning is created!!
i = GetCountOfSomething();
printf("The count of something is %d\n", i);
#endif // DEBUG
}

关于c++ - : "int i, (!!i)"?是什么意思,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30600502/

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