如何绑定模板函数

时间:2011-11-09 16:45:13

标签: c++ boost

嗨,大家都鼓励大师!

我想在字符串向量中找到某个元素,忽略大小写:

#include <iostream>
#include <string>
#include <vector>
#include "boost/algorithm/string.hpp"
#include "boost/bind.hpp"

using std::string;
using std::vector;

bool icmp(const string& str1, const string& str2)
{
    return boost::iequals(str1, str2);
}

int main(int argc, char* argv[])
{
    vector<string> vec;
    vec.push_back("test");

//  if (std::find_if(vec.begin(), vec.end(), boost::bind(&boost::iequals<string,string>, "TEST", _1)) != vec.end()) <-- does not compile
    if (std::find_if(vec.begin(), vec.end(), boost::bind(&icmp, "TEST", _1)) != vec.end())
        std::cout << "found" << std::endl;

    return 0;
}

到目前为止这个工作正常,但我想知道的是,如果有可能摆脱额外的函数(icmp())并直接调用iequals(模板函数)(如在注释行中)

提前致谢!

3 个答案:

答案 0 :(得分:6)

添加模板参数和默认语言环境参数适用于我的机器。

if (std::find_if(vec.begin(), vec.end(), boost::bind(&boost::iequals<string,string>, "TEST", _1, std::locale())) != vec.end())
        std::cout << "found" << std::endl;

编译器是VS2010。

答案 1 :(得分:2)

我确定这不是你所希望的,但这似乎是我唯一能解决的问题(使用g ++ c ++ 03模式):

typedef bool (*fptr)(const std::string&, const std::string&);


if (std::find_if(vec.begin(), vec.end(), 
    boost::bind((fptr) &boost::iequals<string,string>, "TEST", _1)
) != vec.end())

答案 2 :(得分:2)

使用boost lambda:)

#include <iostream>
#include <boost/lambda/bind.hpp>
#include <boost/lambda/lambda.hpp>
#include <algorithm>
#include <vector>
using namespace std;
using namespace boost::lambda;

int main()
{
    vector<string> vec;
    vec.push_back("TEST");
    vec.push_back("test");

    vector<string>::iterator it;

    it = find_if(vec.begin(),vec.end(),_1 == "test");
    cout << *it << endl;

    return 0;
}