标签: c++ std clion
#include <iostream> int main() { int *xx = new (std::nothrow) int[2]; if(xx == NULL) { exit(1); } return 0; }
我尝试使用nothrow,但是clion说xx == NULL“条件总是错误”,而exit(1)表示“无法访问的代码”。我做错了什么?
nothrow
xx == NULL
exit(1)
答案 0 :(得分:2)
这是CLion中的一个错误 - CPP-989