溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C++怎么使用函數(shù)模板推斷類模板參數(shù)類型

發(fā)布時間:2021-11-24 11:05:00 來源:億速云 閱讀:157 作者:iii 欄目:大數(shù)據(jù)

這篇文章主要講解了“C++怎么使用函數(shù)模板推斷類模板參數(shù)類型”,文中的講解內(nèi)容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“C++怎么使用函數(shù)模板推斷類模板參數(shù)類型”吧!

T.44:使用函數(shù)模板推斷類模板參數(shù)類型(如果可能)

Reason(原因)

Writing the template argument types explicitly can be tedious and unnecessarily verbose.

顯示輸入模板參數(shù)類型冗長且無必要。

Example(示例)

tuple<int, string, double> t1 = {1, "Hamlet", 3.14};   // explicit type
auto t2 = make_tuple(1, "Ophelia"s, 3.14);         // better; deduced type

Note the use of the s suffix to ensure that the string is a std::string, rather than a C-style string.

注意通過使用s后綴可以保證string是std::string而不是C風格字符串。

Note(注意)

Since you can trivially write a make_T function, so could the compiler. Thus, make_T functions might become redundant in the future.

你可以直接編寫make_T函數(shù),編譯器也可以。因此make_T函數(shù)將來可能會變得多余。

Exception(例外)

Sometimes there isn't a good way of getting the template arguments deduced and sometimes, you want to specify the arguments explicitly:

有時,沒有合適的方式實現(xiàn)模板參數(shù)推斷,也有可能你希望顯式定義參數(shù)類型。

vector<double> v = { 1, 2, 3, 7.9, 15.99 };
list<Record*> lst;
Note(注意)

Note that C++17 will make this rule redundant by allowing the template arguments to be deduced directly from constructor arguments: Template parameter deduction for constructors (Rev. 3). For example:

注意C++17將會令本規(guī)則多余,原因是C++17允許直接通過構造函數(shù)參數(shù)直接推斷模板參數(shù):構造函數(shù)的模板參數(shù)推斷(Rev.3)。例如:

tuple t1 = {1, "Hamlet"s, 3.14}; // deduced: tuple<int, string, double>
Enforcement(實施建議)

Flag uses where an explicitly specialized type exactly matches the types of the arguments used.

標記顯示定義的類型和實際使用的參數(shù)完全匹配的情況。

感謝各位的閱讀,以上就是“C++怎么使用函數(shù)模板推斷類模板參數(shù)類型”的內(nèi)容了,經(jīng)過本文的學習后,相信大家對C++怎么使用函數(shù)模板推斷類模板參數(shù)類型這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。

c++
AI