Why is NULL undeclared?(为什么未声明 NULL?)
问题描述
当我尝试编译此代码时,此结构构造函数出现问题:
I have a problem with this struct contructor when I try to compile this code:
typedef struct Node
{
Node( int data ) //
{
this->data = data;
previous = NULL; // Compiler indicates here
next = NULL;
}
int data;
Node* previous;
Node* next;
} NODE;
当我来的时候出现这个错误:
when I come this error occurs:
linkedlistlinkedlist.h||In constructor `Node::Node(int)':|
linkedlistlinkedlist.h|9|error: `NULL' was not declared in this scope|
||=== Build finished: 1 errors, 0 warnings ===|
最后一个问题是结构,但它在我的 main.cpp 中工作正常,这次它在头文件中并给了我这个问题.我正在使用 Code::Blocks 来编译这段代码
Last problem was the struct, but it worked fine when it was in my main.cpp, this time it's in a header file and is giving me this problem. I am using Code::Blocks to compile this code
推荐答案
NULL 不是 C 或 C++ 语言中的内置常量.事实上,在 C++ 中它或多或少已经过时了,只需使用纯文字 0 代替,编译器会根据上下文做正确的事情.
NULL is not a built-in constant in the C or C++ languages. In fact, in C++ it's more or less obsolete, just use a plain literal 0 instead, the compiler will do the right thing depending on the context.
在较新的 C++(C++11 及更高版本)中,使用 nullptr(如评论中指出的,谢谢).
In newer C++ (C++11 and higher), use nullptr (as pointed out in a comment, thanks).
否则,添加
#include stddef.h>
获取NULL定义.
这篇关于为什么未声明 NULL?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:为什么未声明 NULL?
基础教程推荐
- 与 CAS 的原子交换(使用 gcc 同步内置函数) 2022-01-01
- 为什么我们不能使用“虚拟继承"?在 COM 中? 2022-01-01
- 随机插入/删除的综合向量与链表基准 2022-01-01
- c++ STL设置差异 2022-01-01
- 如何更改 SysDateTimePick32 或 CDateTimeCtrl 的背景颜色? 2022-01-01
- 提升 ASIO 流缓冲 2021-01-01
- 如何部分禁用 cmake C/C++ 自定义编译器检查 2021-01-01
- C++:获取传递给函数的多维数组的行大小 2021-01-01
- 将不可复制的闭包对象传递给 std::function 参数 2021-01-01
- 如何在 C++ 中正确使用命名空间? 2022-01-01
