我有以下使用帶有lambda函數的ptr_fun的程序。帶有lambda函數的ptr_fun
#include <iostream>
#include <vector>
#include <algorithm>
#include <string>
#include <cstring>
using namespace std;
int main()
{
string target="aa";
vector<string> v1;
v1.push_back("aa");
v1.push_back("bb");
auto stringcasecmp=[](string lhs, string rhs)->int
{
return strcasecmp(lhs.c_str(), rhs.c_str());
};
auto pos = find_if(
v1.begin(), v1.end(),
not1(bind2nd(ptr_fun(stringcasecmp), target))
);
if (pos != v1.end())
cout << "The search for `" << target << "' was successful.\n"
"The next string is: `" << pos[1] << "'.\n";
}
我收到以下錯誤消息。
stackoverflow.cpp: In function ‘int main()’:
stackoverflow.cpp:21:41: error: no matching function for call to ‘ptr_fun(main()::<lambda(std::string, std::string)>&)’
stackoverflow.cpp:22:6: error: unable to deduce ‘auto’ from ‘<expression error>’
如何修改代碼(最低限度)使其編譯?
只是一個小旁註:如果您在使用Lambda像一個規劃,你這裏有很多,你可能考慮傳遞參數作爲參考。節省很多字符串複製。 –
你可能會發現你的'stringcasecmp' lambda是遞歸的! – quamrana
@quamrana爲什麼遞歸? – ggg