飞快舞蹈

文章
5
资源
0
加入时间
2年10月17天

C/C++的#error

关于c/c++的#error, 自己用得不多, 一般在编译的时候才会用, 写个代码demo来看看:#define xyz "just for test"#ifdef xyz#error "wrong"#endif#include using namespace std;int main(){ cout << "main" << endl; return 0;}