请看下面的代码
#include <iostream>
using namespace std;
int main (){
#if true
int fd = 0;
#else
int dd =0;
#endif
cout<<fd;
//cout<<dd;
system("pause");
return 0;
}
在这里,我试图只编译一个块。如果 'if' 编译,那么 'else' 不应该,同样明智。但这不起作用。请帮忙。