我正在尝试定义要在我的调用中使用的特定函数指针类型,boost::bind
以解决与无法识别的函数重载相关的问题(通过调用static_cast
)。我正在明确定义 typedef 以解决std::string::compare
.
当我编写这个函数时,我得到了错误。
typedef int(std::string* resolve_type)(const char*)const;
你知道这个 typedef 有什么问题吗?
我正在尝试定义要在我的调用中使用的特定函数指针类型,boost::bind
以解决与无法识别的函数重载相关的问题(通过调用static_cast
)。我正在明确定义 typedef 以解决std::string::compare
.
当我编写这个函数时,我得到了错误。
typedef int(std::string* resolve_type)(const char*)const;
你知道这个 typedef 有什么问题吗?
我想你想要这个。
typedef int(std::string::*resolve_type)(const char*) const;
例子。
#include <iostream>
#include <functional>
typedef int(std::string::*resolve_type)(const char*)const;
int main()
{
resolve_type resolver = &std::string::compare;
std::string s = "hello";
std::cout << (s.*resolver)("hello") << std::endl;
}
http://liveworkspace.org/code/4971076ed8ee19f2fdcabfc04f4883f8
和绑定的例子
#include <iostream>
#include <functional>
typedef int(std::string::*resolve_type)(const char*)const;
int main()
{
resolve_type resolver = &std::string::compare;
std::string s = "hello";
auto f = std::bind(resolver, s, std::placeholders::_1);
std::cout << f("hello") << std::endl;
}
http://liveworkspace.org/code/ff1168db42ff5b45042a0675d59769c0