命名空间
变体
操作

NULL

来自 cppreference.com
< cpp‎ | types
 
 
实用程序库
语言支持
类型支持 (基本类型,RTTI)
库功能测试宏 (C++20)
动态内存管理
程序实用程序
协程支持 (C++20)
可变参数函数
调试支持
(C++26)
三元比较
(C++20)
(C++20)(C++20)(C++20)
(C++20)(C++20)(C++20)
通用实用程序
日期和时间
函数对象
格式化库 (C++20)
(C++11)
关系运算符 (C++20 中已弃用)
整数比较函数
(C++20)(C++20)(C++20)   
(C++20)
交换类型操作
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
通用词汇类型
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
(C++17)
(C++23)
基本字符串转换
(C++17)
(C++17)

 
 
定义在头文件 <clocale>
定义在头文件 <cstddef>
定义在头文件 <cstdio>
定义在头文件 <cstdlib>
定义在头文件 <cstring>
定义在头文件 <ctime>
定义在头文件 <cwchar>
#define NULL /* 实现定义 */

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

内容

[编辑] 可能的实现

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

[编辑] 注释

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

一些实现将 NULL 定义为编译器扩展 __null,具有以下属性

  • __null 等效于一个值为零的整数字面量(因此与 C++ 标准兼容),并且与 void* 具有相同的大小,例如,它等效于 0/0LILP32/LP64 平台上分别;
  • __null 转换为算术类型,包括 __null 本身,可能会触发警告。

[编辑] 示例

#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 文档 for NULL