您好,登錄后才能下訂單哦!
這篇文章主要介紹“C++怎么定義constexpr”,在日常操作中,相信很多人在C++怎么定義constexpr問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”C++怎么定義constexpr”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
如果函數有可能需要編譯時計算,將它定義為constexpr
constexpr
is needed to tell the compiler to allow compile-time evaluation.
希望告訴編譯器允許編譯時計算的時候需要使用constexpr。
Example(示例)
The (in)famous factorial:
以下是(非)著名的階乘算法:
constexpr int fac(int n){ constexpr int max_exp = 17; // constexpr enables max_exp to be used in Expects Expects(0 <= n && n < max_exp); // prevent silliness and overflow int x = 1; for (int i = 2; i <= n; ++i) x *= i; return x;}
This is C++14. For C++11, use a recursive formulation of fac()
.
這是C++14中的做法。對于C++11,使用遞歸形式的fac()。
Note(注意)
常數表達式不會保證編譯時計算;它只是表示如果函數的參數為常數表達式,而且程序員希望或者編譯器判斷這么做的情況下可以在編譯時計算。
constexpr int min(int x, int y) { return x < y ? x : y; }
void test(int v)
{
int m1 = min(-1, 2); // probably compile-time evaluation
constexpr int m2 = min(-1, 2); // compile-time evaluation
int m3 = min(-1, v); // run-time evaluation
constexpr int m4 = min(-1, v); // error: cannot evaluate at compile time
}
Don't try to make all functions constexpr
. Most computation is best done at run time.
不要試圖將所有的函數指定為constexpr。大部分計算更適合在執行時進行。
Note(注意)
任何最終依靠高層次實時配置或者商業邏輯的API都不應該被指定為constexpr。這樣的定制無法在編譯時進行,依賴這個API的任何constexpr函數必須重構或者去掉constexpr屬性。
Enforcement(實施建議)
Impossible and unnecessary. The compiler gives an error if a non-constexpr
function is called where a constant is required.
不可能也不必要。如果需要一個常量結果而非constexpr函數被調用的話,編譯器會報錯。
到此,關于“C++怎么定義constexpr”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。