#error
預(yù)處理程序指令用于指示錯(cuò)誤。如果找到#error
指令編譯器將發(fā)出致命錯(cuò)誤,并且跳過(guò)進(jìn)一步的編譯過(guò)程。
#error示例
我們來(lái)看一個(gè)簡(jiǎn)單的例子來(lái)使用#error
預(yù)處理器指令。創(chuàng)建一個(gè)源文件:error-example.c,其代碼如下所示 -
#include <stdio.h>
#ifndef PI
#error First include then compile
#else
void main() {
float a = 1000.999;
printf("b = %f\n", a);
}
#endif
執(zhí)行上面示例代碼,得到以下結(jié)果 -
Compile Time Error: First include then compile
創(chuàng)建一個(gè)源文件:error-example2.c,其代碼如下所示 -
#include <stdio.h>
#define PI 3.14159
#ifndef PI
#error First include then compile
#else
void main() {
float a = 1000.999;
printf("b = %f\n", a);
}
#endif
執(zhí)行上面示例代碼,得到以下結(jié)果 -
b = 1000.999023