- 優點:
- block 區塊, 可以在其內宣告變數, 在像 C89需要將變數定義在最上方這方面大有幫助
- 以 do...while(0) 取代 goto, 將 goto 後的東西放 while外面, 裡面用 break來達到 goto的效果
- 程式碼易讀且效能並沒損失
- 避免 marco 沒有加 {}, 又接在 if() 單行執行內容有分號的 case
- e.g.
#define swap(x, y) int temp; temp = x; x = y; y = temp;
if(x > y) swap(x, y);
- Reference:宏定义中使用do{}while(0)的好处
沒有留言:
張貼留言