使用boost的字符串和函数映射会导致编译错误

map of string and functions using boost gives compilation error

本文关键字:编译 错误 映射 函数 boost 字符串 使用      更新时间:2023-10-16

我正试图实现字符串和函数的映射我已经把我的程序的一个片段。

我有以下实现

void foo1(const std::string)
void foo2(const std::string)
void foo3(const std::string)
typedef boost::function<void, const std::string> fun_t;
typedef std::map<std::string, fun_t> funs_t;
funs_t f;
f["xyz"] = &foo1;
f["abc"] = &foo2;
f["pqr"] = &foo3;
std::vector<std::future<void>> tasks;
for(std::string s: {"xyz", "abc", "pqr"}){
 tasks.push_back(std::async(std::launch::async, f.find(f_kb)->second, s));
}
for(auto& task : tasks){
    task.get();
}

显示错误

f["xyz"] = &foo1; 

从这里需要

usr/local/include/boost/function/function_template.hpp225:18: error: no match for call to '(boost::_mfi::mf1<void, Class sample, std::basic_string<char>>)(const std::basic_string<char> &)'
BOOST_FUNCTION_RETURN(boost::mem_fn(*f)(BOOST_FUNCTION_ARGS));
有谁能告诉我代码有什么问题吗?

我认为关于function<>的评论是正确的。

这是你的样本修复工作:

Live On Coliru

#include <boost/function.hpp>
#include <future>
#include <map>
#include <iostream>
void foo1(std::string const& s) { std::cout << __PRETTY_FUNCTION__ << "(" << s << ")n"; }
void foo2(std::string const& s) { std::cout << __PRETTY_FUNCTION__ << "(" << s << ")n"; }
void foo3(std::string const& s) { std::cout << __PRETTY_FUNCTION__ << "(" << s << ")n"; }
typedef boost::function<void(std::string const&)> fun_t;
typedef std::map<std::string, fun_t> funs_t;
int main() {
    funs_t f;
    f["xyz"] = &foo1;
    f["abc"] = &foo2;
    f["pqr"] = &foo3;
    std::vector<std::future<void>> tasks;
    for(std::string s: {"xyz", "abc", "pqr"}){
        tasks.push_back(std::async(std::launch::async, f.find(s)->second, s));
    }
    for(auto& task : tasks){
        task.get();
    }
}

打印如下内容:

void foo3(const string&)(pqr)
void foo2(const string&)(abc)
void foo1(const string&)(xyz)

(输出取决于线程调度,这是实现定义的,不确定的)