C/C++中的__FILE____LINE__#line__func__关键字(预定义宏)
Posted Jason_Lee155
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C/C++中的__FILE____LINE__#line__func__关键字(预定义宏)相关的知识,希望对你有一定的参考价值。
c++11预先定义了一些标识符,其实也就是宏。现在简单说几个:
1、__FILE__用于指示本行语句所在源文件的文件名,如下(test.c):
#include <stdio.h>
void main()
{
printf("%s\\n", __FILE__);
}
=====>>GCC编译执行结果为:
=====>> "test.c"
=====>>Windows的VC6.0编译执行结果为:
=====>> "c:\\documents and settings\\administrator\\桌面\\test.c"
2、__LINE__用于指示本行语句在源文件中的位置信息,如下:
#include <stdio.h>
void main()
{
printf("%d\\n", __LINE__);
printf("%d\\n", __LINE__);
printf("%d\\n", __LINE__);
};
=====>>输出结果为:
=====>> 4
=====>> 5
=====>> 6
3、#line来用于重新设定__LINE__的值,如下:
#include <stdio.h>
#line 200 //指定下一行的__LINE__为200
void main()
{
printf("%d\\n", __LINE__);
printf("%d\\n", __LINE__);
printf("%d\\n", __LINE__);
};
=====>>输出结果为:
=====>> 202
=====>> 203
=====>> 204
4、__func__用于指示所在的函数(该关键字gcc支持,windows下的vc6.0不支持)。如下:
#include <string>
#include <iostream>
using namespace std;
const char* hello() { return __func__; }
const char* world() { return __func__; }
int main(){
cout << hello() << ", " << world() << endl; // hello, world
}
上面代码中,我们定义了两个函数hello和world。利用__func__预定义标识符,我们返回了函数的名字,并将其打印出来。事实上,按照标准定义,编译器会隐式地在函数的定义之后定义__func__标识符。比如上述例子中的hello函数,其实际的定义等同于如下代码:
const char* hello() {
static const char* __func__ = "hello";
return __func__;
}
__func__预定义标识符对于轻量级的调试代码具有十分重要的作用。而在C++11中,标准甚至允许其使用在类或者结构体中。我们可以看看下面这个例子:
#include <iostream>
using namespace std;
struct TestStruct {
TestStruct () : name(__func__) {}
const char *name;
};
int main() {
TestStruct ts;
cout << ts.name << endl; // TestStruct
}
从代码可以看到,在结构体的构造函数中,初始化成员列表使用__func__预定义标识符是可行的,其效果跟在函数中使用一样。不过将__fun__标识符作为函数参数的默认值是不允许的,如下例所示:
void FuncFail( string func_name = __func__) {};// 无法通过编译
这是由于在参数声明时,__func__还未被定义。
以上是关于C/C++中的__FILE____LINE__#line__func__关键字(预定义宏)的主要内容,如果未能解决你的问题,请参考以下文章
__LINE__ __FILE__ 或 qml 中的类似函数
C++中的三个特殊宏:__FILE__,__FUNCTION__和__LINE__