本篇內(nèi)容主要講解“C++的lambda表達式使用方法有哪些”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“C++的lambda表達式使用方法有哪些”吧!
十年的林州網(wǎng)站建設經(jīng)驗,針對設計、前端、開發(fā)、售后、文案、推廣等六對一服務,響應快,48小時及時工作處理。全網(wǎng)營銷推廣的優(yōu)勢是能夠根據(jù)用戶設備顯示端的尺寸不同,自動調(diào)整林州建站的顯示方式,使網(wǎng)站能夠適用不同顯示終端,在瀏覽器中調(diào)整網(wǎng)站的寬度,無論在任何一種瀏覽器上瀏覽網(wǎng)站,都能展現(xiàn)優(yōu)雅布局與設計,從而大程度地提升瀏覽體驗。創(chuàng)新互聯(lián)從事“林州網(wǎng)站設計”,“林州網(wǎng)站推廣”以來,每個客戶項目都認真落實執(zhí)行。
上篇中創(chuàng)建了一個一元謂詞,當整數(shù)能被2整除時返回true。現(xiàn)在如果要改變指定的除數(shù),可通過lambda表達式的捕獲列表。
int Divisor=3;//除數(shù)
auto iElement = find_if(begin, end, [Divisor](int dividend){return (dividend % Divisor)==0;});
參數(shù)([…])被稱為lambda表達式的捕獲列表。
lambda表達式總是以[ ]開頭,并可以接受多個參數(shù),為此可在捕獲列表([ ])中指定這些參數(shù)狀態(tài),并用逗號隔開。
[Var1, Var2](Type& param){表達式;}
lambda表達式還可以接受多個輸入?yún)?shù),為此可用逗號分隔它們:
[S1, S2](Type1& var1, Type2& var2){表達式;}
如果要向編譯器明確地指定返回類型,可使用->,如下所示:
[S1, S2](Type1& var1, Type2& var2)->ReturnType{Statement1;Statement2; return(value or expressiom);}
二元函數(shù)接受兩個參數(shù),還可返回一個值。定義如下:
[…](Type1& param1Name, Type2& param2Name){表達式;}
下面演示將lambda表達式用作二元函數(shù),以便將兩個容器中的元素相乘,并將結(jié)果存儲到第三個容器中。
#include#include #include using namespace std;int main(){ vector vecMult1,vecMult2;for(int count=0; count<10; ++count) vecMulti1.push_back(count);for(int count1=0; count1<10; ++count1) vecMulti2.push_back(count2); vector vecResult; vecResult.resize(10);transform(vecMulti1.begin(),vecMulti1.end(),vecMulti2.begin(),vecResult.begin(),[](int a, int b){ return a*b}); cout<<"The result of the multiplication is: "< 4.二元謂詞對應的lambda表達式
二元謂詞是:返回bool型,幫助決策的二元函數(shù)。二元謂詞可用于std::sort()等排序算法中。與二元謂詞等價的lambda表達式的通用語法是:
[…](Type1& param1Name, Type2& param2Name){表達式;}
下面將演示如何將lambda表達式用于姓名按字母進行排序:#include#include #include #include using namespace std;template void DisplayContents(const T& Input){ for(auto iElement=Input.begin();iElement!=Input.end();++iElement) cout<<*iElement< vecNames; vecNames.push_back("jack"); vecNames.push_back("Sam"); vecNames.push_back("hugo");sort(vecNames.begin(),vecNames.end(),[](const string& str1, const string& str2)->bool{ string str1Lower; str1Lower.resize(str1.size());transform(str1.begin(),str1.end(),str1Lower.begin(),tolower);//轉(zhuǎn)換成大寫 string str2Lower; str2Lower.resize(str2.size());transform(str2.begin(),str2.end(),str2Lower.begin(),tolower);//轉(zhuǎn)換成大寫return (str1Lower 到此,相信大家對“C++的lambda表達式使用方法有哪些”有了更深的了解,不妨來實際操作一番吧!這里是創(chuàng)新互聯(lián)網(wǎng)站,更多相關(guān)內(nèi)容可以進入相關(guān)頻道進行查詢,關(guān)注我們,繼續(xù)學習!
文章題目:C++的lambda表達式使用方法有哪些
標題路徑:http://weahome.cn/article/gceocp.html