标签:file 双引号 roc change mes 译文 strong code 代码
编译过程中的任意错误信息意味着无法生成最终的可执行程序
例子1:#error预处理初探
#include<stdio.h>
#ifndef __cplusplus
#error This file should be processed with c++ compliler.
#endif // __cplusplus
class CppClass
{
private:
int m_value;
public:
CppClass(){}
~CppClass(){}
};
int main()
{
return 0;
}
#line用于强制制定新的行号和编译文件名,并对源程序的代码重新编号
用法:#line number filename(filename可以省略)
#line编译指示字的本质是重定义 __LINE__和FILE
#include <stdio.h>
int main()
{
printf("%s : %d\n", __FILE__, __LINE__);
#line 1 "change.c"
printf("%s : %d\n", __FILE__, __LINE__);
return 0;
}
标签:file 双引号 roc change mes 译文 strong code 代码
原文地址:https://www.cnblogs.com/yanyun888/p/9213124.html