gpt4 book ai didi

c++ - std::nothrow 未按预期工作 - 条件始终为假

转载 作者:塔克拉玛干 更新时间:2023-11-03 02:08:20 26 4
gpt4 key购买 nike

#include <iostream>


int main() {


int *xx = new (std::nothrow) int[2];

if(xx == NULL)
{
exit(1);
}

return 0;
}

我正在尝试使用 nothrow,但是 clion 说关于 xx == NULL “条件始终为假”,以及关于 exit(1)那个“无法访问的代码”。我做错了什么?

最佳答案

这是 CLion 中的错误 - CPP-989

关于c++ - std::nothrow 未按预期工作 - 条件始终为假,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37511660/

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