概述
#ifdef WIN32
#error This programme cannot compile at Windows Platform
#endif
注释:WIN32 是Windows下的预定义宏。当用户在Windows下编译该程序时,由于定义了WIN32这个宏,所以会执行#error命令,提示用户发生了编译错误,错误信息是:
This programme cannot compile at Windows Platform //这就是定义的错误
信息
#include <stdio.h>
int main()
{
#ifndef COMMAND
#error No defined Constant Symbol COMMAND
#endif
return 0;
}
注:说明COMMAND没有定义,报错。
最后
以上就是舒服大雁为你收集整理的#error的使用的全部内容,希望文章能够帮你解决#error的使用所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复