标签:
#define f(x) do {\ some_code; some_code; } while(0)(while(0)后没有分号)。这种语句在使用的时候比:#define f(x) {\ some_code; some_code; }(没有分号)不容易产生谬误。if(sss) f(x); esle ...此处如果不使用while(0)有可能else会跟着f(x)展开后的if走,使用while就不会产生这种情况。需要注意的是:第一种while(0)后不要加;否则在使用的时候就用成了f(x)【没有分号】,代码风格不统一。
//goto case { if(!a) gotodone; //do something here if(!b) gotodone; //do another thing here done: //final step goes here } // do ... while(0) { do { if(!a) break; //do something here if(!b) break; //do another thing here }while(0); //final step goes here }
int a; a = 10; int b; b = 20;这种代码在只支持c89的编译器上是编译不过去的,比如ADS 2.0int a; a = 10; do{ int b; b = 20; }while(0);这种代码在各种编译器上都能编译过去。
标签:
原文地址:http://www.cnblogs.com/wubugui/p/4247728.html