我試圖趕上C++ 11和所有偉大的新功能。我有點卡在lambdas上。Lambdas和std :: function
這是我能得到工作代碼:
#include <iostream>
#include <cstdlib>
#include <vector>
#include <string>
#include <functional>
using namespace std;
template<typename BaseT, typename Func>
vector<BaseT> findMatches(vector<BaseT> search, Func func)
{
vector<BaseT> tmp;
for(auto item : search)
{
if(func(item))
{
tmp.push_back(item);
}
}
return tmp;
}
void Lambdas()
{
vector<int> testv = { 1, 2, 3, 4, 5, 6, 7 };
auto result = findMatches(testv, [] (const int &x) { return x % 2 == 0; });
for(auto i : result)
{
cout << i << endl;
}
}
int main(int argc, char* argv[])
{
Lambdas();
return EXIT_SUCCESS;
}
我想有是這樣的:
template<typename BaseT>
vector<BaseT> findMatches(vector<BaseT> search, function <bool (const BaseT &)> func)
{
vector<BaseT> tmp;
for(auto item : search)
{
if(func(item))
{
tmp.push_back(item);
}
}
return tmp;
}
基本上我想可能lambda表達式縮小到一個合理的功能的子集。 我錯過了什麼?這甚至有可能嗎?我正在使用GCC/G ++ 4.6。
如果你想做什麼(即使用'std :: function'),你會得到什麼錯誤?也不是說GCC沒有完全支持一些C++ 11的支持,即使在GCC 4.7中也不支持4.6。 – 2012-08-02 09:07:54
你的第二個代碼示例看起來不錯;你會得到什麼錯誤? – ecatmur 2012-08-02 09:10:54
模板只允許精確匹配,因此您無法將lambda函數傳遞給期望使用'std :: function'的函數模板。而且,'function'構造函數不需要拒絕那些實際上不匹配'function'簽名的參數,所以實際上並沒有用於縮小範圍。 – JohannesD 2012-08-02 09:15:25