Home
C&C++函数库
c++ 语法
程序源码
Linux C库
函数搜索
C&C++标准库
C库函数
<cassert> (assert.h)
<cctype> (ctype.h)
<cerrno> (errno.h)
<cfenv>
(fenv.h)
<cfloat> (float.h)
<cinttypes>
(inttypes.h)
<ciso646> (iso646.h)
<climits> (limits.h)
<clocale> (locale.h)
<cmath> (math.h)
<csetjmp> (setjmp.h)
<csignal> (signal.h)
<cstdarg> (stdarg.h)
<cstdbool> (stdbool.h)
<cstddef> (stddef.h)
<cstdint> (stdint.h)
<cstdio> (stdio.h)
<cstdlib> (stdlib.h)
<cstring> (string.h)
<ctgmath> (tgmath.h)
<ctime> (time.h)
<cuchar> (uchar.h)
<cwchar> (wchar.h)
<cwctype> (wctype.h)
容器
输入输出
多线程
C++库函数
NULL
宏 <cstddef> <cstdlib> <cstring> <cwchar> <ctime> <clocale> <cstdio>
空指针
这个宏扩展为一个空指针常量。
C
空指针常量是一个整型常量表达式,其计算结果为0(如0或0L),或将此类值强制转换为void*类型(如(void*)0)。
C++98
空指针常量是求值为0(例如0或0L)的整型常量表达式。
C++11
空指针常量可以是求值为零的整型常量表达式(比如0或0L),也可以是
nullptr_t
类型的值(比如nullptr)。
空指针常量可以转换为任何获取空指针值的指针类型(或指针到成员类型)。这是一个特殊值,表示指针没有指向任何对象。
联系我们
免责声明
关于CandCplus
网站地图