命名空间
变体
操作

NULL

来自 cppreference.cn
< cpp‎ | 类型
 
 
 
类型支持
基本类型
定宽整数类型 (C++11)
定宽浮点类型 (C++23)
(C++11)    
(C++17)
(C++11)
NULL

数值极限
C 数值极限接口
运行时类型信息
 
定义于头文件 <clocale>
定义于头文件 <cstddef>
定义于头文件 <cstdio>
定义于头文件 <cstdlib>
在头文件 <cstring> 中定义
定义于头文件 <ctime>
在头文件 <cwchar> 中定义
#define NULL /* 实现定义 */

NULL 是实现定义的空指针常量

目录

[编辑] 可能的实现

#define NULL 0
// since C++11
#define NULL nullptr

[编辑] 注意

在 C 中,宏 NULL 可能具有类型 void*,但在 C++ 中不允许,因为空指针常量不能具有该类型。

[编辑] 示例

#include <cstddef>
#include <iostream>
#include <type_traits>
#include <typeinfo>
 
class S;
 
int main()
{
    int* p = NULL;
    int* p2 = static_cast<std::nullptr_t>(NULL);
    void(*f)(int) = NULL;
    int S::*mp = NULL;
    void(S::*mfp)(int) = NULL;
    auto nullvar = NULL; // may trigger a warning when compiling with gcc/clang
 
    std::cout << "The type of nullvar is " << typeid(nullvar).name() << '\n';
 
    if constexpr(std::is_same_v<decltype(NULL), std::nullptr_t>)
        std::cout << "NULL implemented with type std::nullptr_t\n";
    else
        std::cout << "NULL implemented using an integral type\n";
 
    [](...){}(p, p2, f, mp, mfp); // < suppresses "unused variable" warnings
}

可能的输出

The type of nullvar is long
NULL implemented using an integral type

[编辑] 参阅

nullptr (C++11) 指定空指针值的指针字面量[编辑]
(C++11)
空指针字面量 nullptr 的类型
(typedef) [编辑]
C 文档 关于 NULL