将std :: bind与重载函数一起使用

时间:2014-07-21 20:49:27

标签: c++ c++11 overloading stdbind

我无法找到如何使用std::bind将参数绑定到重载函数。不知何故std::bind无法推断出重载类型(对于其模板参数)。如果我不重载该功能一切正常。代码如下:

#include <iostream>
#include <functional>
#include <cmath>

using namespace std;
using namespace std::placeholders;

double f(double x) 
{
    return x;
}

// std::bind works if this overloaded is commented out
float f(float x) 
{
    return x;
}

// want to bind to `f(2)`, for the double(double) version

int main()
{

    // none of the lines below compile:

    // auto f_binder = std::bind(f, static_cast<double>(2));

    // auto f_binder = bind((std::function<double(double)>)f, \
    //  static_cast<double>(2));

    // auto f_binder = bind<std::function<double(double)>>(f, \
    //  static_cast<double>(2));

    // auto f_binder = bind<std::function<double(double)>>\
    // ((std::function<double(double)>)f,\
    //  static_cast<double>(2));

    // cout << f_binder() << endl; // should output 2
}

我的理解是std::bind无法以某种方式推断出其模板参数,因为f已经过载,但我无法弄清楚如何指定它们。我在代码中尝试了4种可能的方式(注释行),没有用。如何指定std::bind的函数类型?任何帮助深表感谢!

1 个答案:

答案 0 :(得分:13)

您可以使用:

auto f_binder = std::bind(static_cast<double(&)(double)>(f), 2.);

auto f_binder = bind<double(double)>(f, 2.);

或者,可以使用lambda:

auto f_binder = []() {
    return f(2.);     // overload `double f(double)` is chosen as 2. is a double.

};