我试图绕过 std::packaged_task 缺少复制构造函数,以便我可以将它传递给 std::function (只会被移动)。
我从 std::packaged_task 继承并添加了一个虚拟复制构造函数,如果我从不复制它移入的 std::function,我认为不应该调用它。
#include <iostream>
#include <future>
#include <functional>
#include <thread>
template <typename T>
class MyPackagedTask : public std::packaged_task<T()> {
public:
template <typename F>
explicit MyPackagedTask(F&& f)
: std::packaged_task<T()>(std::forward<F>(f)) {}
MyPackagedTask(MyPackagedTask&& other)
: std::packaged_task<T()>(std::move(other)) {}
MyPackagedTask(const MyPackagedTask& other) {
// Adding this borks the compile
}
};
int main()
{
MyPackagedTask<int> task([]() {return 0;});
auto future = task.get_future();
std::thread t(std::move(task));
t.join();
std::cout << future.get() << std::endl;
}
用 gcc 6.2.1 编译它,我收到以下错误消息(只是结尾部分,如果你想要整个事情,请告诉我......):
/usr/include/c++/6.2.1/future:1325:6: error: invalid use of void expression
(*_M_result)->_M_set((*_M_fn)());
错误消息对我来说是无法解析的,所以我想知道我是否做错了什么或者编译器是否失败。