g++中宏NULL究竟是什么?

时间:2022-08-28 15:53:33

NULL是个指针,还是个整数?0?或(void*)0?答案是和g++版本有关。g++ 4.6支持C++11,引入了nullptr,也许会发生变化。

可以写段简单代码求证一下:

#include <stdio.h>

#include <typeinfo>

int main()

{

printf("NULL: %d\n", NULL);

printf("sizeof(NULL): %d\n", sizeof(NULL));

printf("typeid(__null).name(): %s\n", typeid(__null).name());

printf("typeid(0).name(): %s\n", typeid(0).name());

return 0;

}

使用g++ 4.1.2(SuSE 10.1)编译,输出结果如下:

NULL: 0

sizeof(NULL):

typeid(__null).name(): l

typeid(0).name(): i

从输出结果,可以看到NULL是long类型的整数,定义应当是0L或0LL。

下面再借助gdb,来看一看它的真面目(博文:《GDB高级技巧》有介绍gdb的高级使用)。假设源文件名为x.cpp,使用如下方法编译:

g++ -g3 -gdwarf-2 -o x x.cpp

注意这里使用了参数“-g3 -gdwarf-2”。其中“-g3”不能是“-g”。

编译成功后,在gdb中跟踪运行程序,在main函数处打断点即可:

adoop@VM-39-166-sles10-64:~/current> gdb ./x

GNU gdb 6.6

Copyright (C) 2006 Free Software Foundation, Inc.

GDB is free software, covered by the GNU General Public License, and you are

welcome to change it and/or distribute copies of it under certain conditions.

Type "show copying" to see the conditions.

There is absolutely no warranty for GDB.  Type "show warranty" for details.

This GDB was configured as "x86_64-suse-linux"...

Using host libthread_db library "/lib64/libthread_db.so.1".

(gdb) b main

Breakpoint 1 at 0x4005dc: file x.cpp, line 6.

(gdb) r

Starting program: /data/hadoop/hadoop-2.4.0/x

Breakpoint 1, main () at x.cpp:6

6               printf("NULL: %d\n", NULL);

(gdb) macro expand NULL

expands to: __null

(gdb) p NULL

No symbol "__null" in current context.

(gdb) ptype NULL

No symbol "__null" in current context.

(gdb) p __null

No symbol "__null" in current context.

(gdb) ptype __null

No symbol "__null" in current context.

(gdb)

从gdb的跟踪结果,不难看到NULL的真身是__null,但__null又是什么了?试图从/usr/include中找到答案:

hadoop@VM-39-166-sles10-64:~/current> grep __null /usr/include/*

/usr/include/libio.h:#  define NULL (__null)

hadoop@VM-39-166-sles10-64:~/current> grep __null /usr/include/*/*

/usr/include/asm-i386/vm86.h:   long __null_ds;

/usr/include/asm-i386/vm86.h:   long __null_es;

/usr/include/asm-i386/vm86.h:   long __null_fs;

/usr/include/asm-i386/vm86.h:   long __null_gs;

/usr/include/asm-i386/vm86.h:   long __null_ds;

/usr/include/asm-i386/vm86.h:   long __null_es;

未能找到满意的答案,那么__null只能是g++内置定义的,所以未出现在任何头文件中,事实证明也如此,在代码中可以直接使用__null(尽管如此,但这个不是个好主意):

#include <stdio.h>

#include <typeinfo>

int main()

{

printf("NULL: %d\n", NULL);

printf("NULL: %d\n", __null);

printf("sizeof(NULL): %d\n", sizeof(NULL));

printf("typeid(__null).name(): %s\n", typeid(__null).name());

printf("typeid(0).name(): %s\n", typeid(0).name());

return 0;

}

执行man g++,然后搜索“__null”,找到一个有关的条目:

-Wstrict-null-sentinel (C++ only)

Warn also about the use of an uncasted "NULL" as sentinel.  When compiling only with GCC this is a valid sentinel, as "NULL" is defined to "__null".  Although it is a null pointer constant not a null pointer, it is guaranteed to of the same size as a pointer(保证和指针相同的大小).  But this use is not portable across different compilers.

搜索gcc 4.8.2源码中的FSFChangeLog.11文件:

Wed Aug  7 14:10:07 1996  Jason Merrill  <jason@yorick.cygnus.com>

* ginclude/stddef.h (NULL): Use __null for G++.

继续搜索gcc源代码,可以得到更多信息:

VM-39-166-sles10-64:/data/gcc-4.8.2/gcc # grep __null */*

c-family/c-common.c:  { "__null",               RID_NULL,       0 },

c-family/c-common.c:  /* Create the built-in __null node.  It is important that this is

c-family/c-common.c:      /* Although __null (in C++) is only an integer we allow it

c-family/c-common.h:/* The node for C++ `__null'.  */

cp/call.c:            /* If __null has been converted to an integer type, we do not

cp/NEWS:  <stddef.h> is now defined as __null, a magic constant of type (void *)

cp/parser.c:     __null

cp/parser.c:      /* The `__null' literal.  */

进一步查看c-family/c-common.c文件:

const struct c_common_resword c_common_reswords[] =

{

{ "__is_union",       RID_IS_UNION,   D_CXXONLY },

{ "__label__",        RID_LABEL,      0 },

{ "__null",           RID_NULL,       0 },

{ "__real",           RID_REALPART,   0 },

{ "__real__",         RID_REALPART,   0 },

{ "__restrict",       RID_RESTRICT,   0 },

结构体c_common_resword的定义在c-family/c-common.h中:

/* The node for C++ `__null'.  */

#define null_node                       c_global_trees[CTI_NULL]

/* An entry in the reserved keyword table.  */

struct c_common_resword

{

const char *const word;

ENUM_BITFIELD(rid) const rid : 16;

const unsigned int disable   : 16;

};

enum c_tree_index

{

。。。。。。

CTI_VOID_ZERO,

CTI_NULL,

CTI_MAX

};

查看文件cp/parser.c,parser.c是C/C++语法解析器的实现文件:

static tree

cp_parser_primary_expression (cp_parser *parser,

bool address_p,

bool cast_p,

bool template_arg_p,

bool decltype_p,

cp_id_kind *idk)

{

。。。。。。

case CPP_KEYWORD:

switch (token->keyword)

{

/* These two are the boolean literals.  */

case RID_TRUE:

cp_lexer_consume_token (parser->lexer);

return boolean_true_node;

case RID_FALSE:

cp_lexer_consume_token (parser->lexer);

return boolean_false_node;

/* The `__null' literal.  */

case RID_NULL:

cp_lexer_consume_token (parser->lexer);

return null_node;

/* The `nullptr' literal.  */

case RID_NULLPTR:

cp_lexer_consume_token (parser->lexer);

return nullptr_node;

g++中宏NULL究竟是什么?的更多相关文章

  1. C&plus;&plus; 中宏的使用 --来自:http&colon;&sol;&sol;blog&period;csdn&period;net&sol;hgl868&sol;article&sol;details&sol;7058906

    宏在代码中的使用实例: g_RunLog2("Middleware client for Linux, build:%s %s", __DATE__, __TIME__); 下面详 ...

  2. ATL中宏定义offsetofclass的分析

    近日学习ATL,通过对宏定义offsetofclass的解惑过程.顺便分析下虚函数表,以及通过虚函数表调用函数的问题. 1 解开ATL中宏定义offsetofclass的疑惑 #define _ATL ...

  3. Oracle中的null

    测试数据:公司部分员工基本信息

  4. 正则表达式&lpar;&sol;&lbrack;&Hat;0-9&rsqb;&sol;g&comma;&&num;39&semi;&&num;39&semi;&rpar;中的&quot&semi;&sol;g&quot&semi;是什么意思 ?

    正则表达式(/[^0-9]/g,'')中的"/g"是什么意思 ?     表达式加上参数g之后,表明可以进行全局匹配,注意这里“可以”的含义.我们详细叙述: 1)对于表达式对象的e ...

  5. SQL中的Null深入研究分析

    SQL中的Null深入研究分析 虽然熟练掌握SQL的人对于Null不会有什么疑问,但总结得很全的文章还是很难找,看到一篇英文版的, 感觉还不错. Tony Hoare 在1965年发明了 null 引 ...

  6. 深入详解SQL中的Null

    深入详解SQL中的Null NULL 在计算机和编程世界中表示的是未知,不确定.虽然中文翻译为 “空”, 但此空(null)非彼空(empty). Null表示的是一种未知状态,未来状态,比如小明兜里 ...

  7. 给定一个字符串里面只有&quot&semi;R&quot&semi; &quot&semi;G&quot&semi; &quot&semi;B&quot&semi; 三个字符,请排序,最终结果的顺序是R在前 G中 B在后。 要求:空间复杂度是O&lpar;1&rpar;,且只能遍历一次字符串。

    题目:给定一个字符串里面只有"R" "G" "B" 三个字符,请排序,最终结果的顺序是R在前 G中 B在后. 要求:空间复杂度是O(1),且 ...

  8. JAVA中String &equals; null 与 String &equals; &quot&semi;&quot&semi; 的区别

    JAVA中String = null 与 String = ""的区别 笔者今天在Debug的时候发现的NPE(NullPointerException),辛辛苦苦地调试了半天,终 ...

  9. &lowbar;DataStructure&lowbar;C&lowbar;Impl&colon;求图G中从顶点u到顶点v的一条简单路径

    #pragma once #include<stdio.h> #include<stdlib.h> #define StackSize 100 typedef int Data ...

随机推荐

  1. Windows Azure 上传 VM

    One of the great features of Windows Azure is VHD mobility. Simply put it means you can upload and d ...

  2. HBase概念学习(十)HBase与MongDB等NoSQL数据库对照

    转载请注明出处: jiq•钦's technical Blog - 季义钦 一.开篇 淘宝之前使用的存储层架构一直是MySQL数据库,配合以MongDB,Tair等存储. MySQL因为开源,而且生态 ...

  3. Qt多线程学习:创建多线程

    [为什么要用多线程?] 传统的图形用户界面应用程序都仅仅有一个运行线程,而且一次仅仅运行一个操作.假设用户从用户界面中调用一个比較耗时的操作,当该操作正在运行时,用户界面一般会冻结而不再响应.这个问题 ...

  4. JAVA FILE or I&sol;O学习 - I&sol;O流操作:FileInputStream、FileOutputStream、ObjectInputStream、ObjectOutputStream、InputStreamReader、OutputStreamWriter等

    public class IOStreamKnow { /*********************************文件读写方式:字节流**************************** ...

  5. k8s之external-etcd集群管理

    一.概述 kubernetes使用etcd作为数据中心,使用kubeadm部署kubernetes的时候默认会自己部署一个etcd,当然也可以将kubeadm部署的单点的etcd做成集群,但是比较麻烦 ...

  6. Spider-five

    一.Scrapy框架 1. Scrapy框架主要组成 a. Scrapy三个对象: request请求对象.response响应对象.item数据对象(字典) b. Scrapy五个核心组件: Spi ...

  7. 滚动加载图片(懒加载)实现原理(这是旧实现,仅做为获取元素宽高api的参考)

    https://www.cnblogs.com/flyromance/p/5042187.html 本文主要通过以下几方面来说明懒加载技术的原理,个人前端小菜,有错误请多多指出 一.什么是图片滚动加载 ...

  8. 第一次使用bootstrap3做的响应式网站

    第一次使用bootstrap3,发现对移动支持得不错,可以很快的开发出一个支持移动和PC端的网站 作为一个后台程序员觉得得界面做得还可以, 按以前是只能自己看看了 时间线来自国外网站,使用到的css如 ...

  9. ZED 常用资料汇总

    Calibration file Location: /usr/local/zed/settings/SN10027507.conf I suggest the calibration file sh ...

  10. 平衡树学习笔记(2)-------Treap

    Treap 上一篇:平衡树学习笔记(1)-------简介 Treap是一个玄学的平衡树 为什么说它玄学呢? 还记得上一节说过每个平衡树都有自己的平衡方式吗? 没错,它平衡的方式是......rand ...