5

我想创建一个映射,键是函数名作为字符串,值是函数本身。所以像这样的事情......

#include <cmath>
#include <functional>
#include <map>
#include <string>

typedef std::function<double(double)> mathFunc;

int main() {
    std::map< std::string, mathFunc > funcMap;

    funcMap.insert( std::make_pair( "sqrt", std::sqrt ) );

    double sqrt2 = (funcMap.at("sqrt"))(2.0);

    return 0;
}

将用于在某些输入值上调用 sqrt 函数。然后,当然您可以将其他函数添加到映射中,例如 sin、cos、tan、acos 等,然后通过一些字符串输入来调用它们。我的问题是映射中的值类型应该是什么,函数指针和 std::function 在 std::make_pair 行都给出以下错误

error: no matching function for call to 'make_pair(const char [5], <unresolved overloaded function type>)'

那么对于像 std::sqrt 这样的内置函数,我的值类型应该是什么?

谢谢

4

2 回答 2

4
typedef double (*DoubleFuncPtr)(double);
...
funcMap.insert( std::make_pair( "sqrt", static_cast<DoubleFuncPtr>(std::sqrt) ) );
于 2013-06-16T17:45:50.777 回答
0

您可以将 typedef 用于函数指针,并且由于它是映射,因此您可以使用 operator[] 插入函数:

typedef double(*mathFunc)(double);

...

funcMap[std::string( "sqrt")]= std::sqrt;

...

ideone的代码

对于不采用单个double参数的函数,您将需要一些其他映射。

于 2013-06-16T17:52:17.363 回答