真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

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

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

在環(huán)江等地區(qū),都構(gòu)建了全面的區(qū)域性戰(zhàn)略布局,加強發(fā)展的系統(tǒng)性、市場前瞻性、產(chǎn)品創(chuàng)新能力,以專注、極致的服務(wù)理念,為客戶提供網(wǎng)站建設(shè)、成都網(wǎng)站設(shè)計 網(wǎng)站設(shè)計制作專業(yè)公司,公司網(wǎng)站建設(shè),企業(yè)網(wǎng)站建設(shè),高端網(wǎng)站設(shè)計,成都全網(wǎng)營銷,成都外貿(mào)網(wǎng)站建設(shè),環(huán)江網(wǎng)站建設(shè)費用合理。

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

Reason(原因)

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

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

Example(示例)

tuple 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風(fēng)格字符串。

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 v = { 1, 2, 3, 7.9, 15.99 };
list 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允許直接通過構(gòu)造函數(shù)參數(shù)直接推斷模板參數(shù):構(gòu)造函數(shù)的模板參數(shù)推斷(Rev.3)。例如:

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

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

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

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


本文標題:C++怎么使用函數(shù)模板推斷類模板參數(shù)類型
網(wǎng)址分享:http://weahome.cn/article/gdpdjd.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部