C++深度解析(4)—內聯函數

1.常量與宏回顧函數 C++中的const常量能夠替代宏常數定義,如: const int A= 3; ←→ #define A 3  C++中是否有解決方案替代宏代碼片斷呢? 2.內聯函數 優化 C++中推薦使用內聯函數替代宏代碼片斷  C++中使用inline關鍵字聲明內聯函數  inline int func(int a, int b)    {       return a< b? a: 
相關文章
相關標籤/搜索