您好,登錄后才能下訂單哦!
C++中避免使用宏定義常量或函數的原因是什么,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
ES.31:不要用宏定義常量或函數
Macros are a major source of bugs. Macros don't obey the usual scope and type rules. Macros don't obey the usual rules for argument passing. Macros ensure that the human reader sees something different from what the compiler sees. Macros complicate tool building.
宏是錯誤的主要來源之一。宏不會遵守通常的范圍和類型準則。宏也不會遵守參數傳遞準則。宏為人提供一個和編譯器視角有些不同的視角。宏讓工具構建變得更復雜。
Example, bad(反面示例)
#define PI 3.14#define SQUARE(a, b) (a * b)
Even if we hadn't left a well-known bug in SQUARE there are much better behaved alternatives; for example:
雖然SQUARE定義中不存在已知的錯誤,但確實存在可以動作更好的其他選項。
constexpr double pi = 3.14;
template<typename T> T square(T a, T b) { return a * b; }
關于C++中避免使用宏定義常量或函數的原因是什么問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。