欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C语言__LINE__实现原理

程序员文章站 2022-05-20 19:39:08
在test.c中写如下代码: 1 #include 2 3 int main() 4 { 5 printf("line:%d\n", __LINE__); 6 return 0; 7 } 使用gcc编译 gcc -o test test.c 执行 ./test 结果 line:5 ......

在test.c中写如下代码:

  1 #include <stdio.h>

  2 

  3 int main()

  4 {

  5     printf("line:%d\n", __line__);

  6     return 0;

  7 }

使用gcc编译 gcc -o test test.c

执行 ./test

结果 line:5

__line__ 是通过什么方式知道自己在第5行呢?

 

使用命令 gcc -e test.c -o test.i 进行预处理

查看test.i的最后几行代码如下:

535 # 412 "/usr/include/stdio.h" 2 3 4

536 # 2 "test.c" 2

537 

538 int main()

539 {

540     printf("line:%d\n", 5);

541     return 0;

542 }

由此可见:在预处理阶段,__line__ 会被替换成自己所在行的行号。