newCode(); /* someOtherCode(); */
/* newCode(); */ someOtherCode();其實可以用C裡頭preprocessor的小技巧來快速切換程式碼
#if 1 newCode(); #else test(); /* FIXME: please don't to that. */ someOtherCode(); #endif
#if 0 newCode(); #else test(); /* FIXME: please don't to that. */ someOtherCode(); #endif如此一來我們只要切換1和0就可以快速切換不同區塊的程式碼,就算裡頭有註解也不用擔心
要註解一大塊程式碼也可以使用這個技巧
#if 0 newCode(); test(); #endid
最後是 #endif才對?
回覆刪除