NULL
来自 cppreference.com
定义在头文件 <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/0L 在 ILP32/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
|