您好,登錄后才能下訂單哦!
本篇內容主要講解“C++的lambda表達式使用方法有哪些”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“C++的lambda表達式使用方法有哪些”吧!
上篇中創建了一個一元謂詞,當整數能被2整除時返回true。現在如果要改變指定的除數,可通過lambda表達式的捕獲列表。
int Divisor=3;//除數
auto iElement = find_if(begin, end, [Divisor](int dividend){return (dividend % Divisor)==0;});
參數([…])被稱為lambda表達式的捕獲列表。
lambda表達式總是以[ ]開頭,并可以接受多個參數,為此可在捕獲列表([ ])中指定這些參數狀態,并用逗號隔開。
[Var1, Var2](Type& param){表達式;}
lambda表達式還可以接受多個輸入參數,為此可用逗號分隔它們:
[S1, S2](Type1& var1, Type2& var2){表達式;}
如果要向編譯器明確地指定返回類型,可使用->,如下所示:
[S1, S2](Type1& var1, Type2& var2)->ReturnType{Statement1;Statement2; return(value or expressiom);}
二元函數接受兩個參數,還可返回一個值。定義如下:
[…](Type1& param1Name, Type2& param2Name){表達式;}
下面演示將lambda表達式用作二元函數,以便將兩個容器中的元素相乘,并將結果存儲到第三個容器中。
#include <vector>#include <iostream>#include <algorithm>using namespace std;int main(){ vector<int>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<int>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: "<<endl;for(size_t Index=0;Index<Result.size();++Index) cout<<vecResult[Index]<<' '; cout<<endl;return 0;}
二元謂詞是:返回bool型,幫助決策的二元函數。二元謂詞可用于std::sort()等排序算法中。與二元謂詞等價的lambda表達式的通用語法是:
[…](Type1& param1Name, Type2& param2Name){表達式;}
下面將演示如何將lambda表達式用于姓名按字母進行排序:
#include <algorithm>#include <string>#include <vector>#include <iostream>using namespace std;template <typename T>void DisplayContents(const T& Input){ for(auto iElement=Input.begin();iElement!=Input.end();++iElement) cout<<*iElement<<endl;}int main(){ vector<string>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);//轉換成大寫 string str2Lower; str2Lower.resize(str2.size());transform(str2.begin(),str2.end(),str2Lower.begin(),tolower);//轉換成大寫return (str1Lower<str2Lower);});DisplayContents(vecNames);return 0;}
到此,相信大家對“C++的lambda表達式使用方法有哪些”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。