computer:c:tips:error_command
#error出错
#error指令产生一个编译时错误信息。
示例:
#if (SIZE % 256) != 0 #error "SIZE must be a multiple of 256!" #endif
computer/c/tips/error_command.txt · 最后更改: 2014/11/01 02:02 由 127.0.0.1
#error指令产生一个编译时错误信息。
示例:
#if (SIZE % 256) != 0 #error "SIZE must be a multiple of 256!" #endif