我在“C ++并发操作”一书中输入了以下示例,但它报告:
"terminate called without an active exception".
似乎问题在于spawn_task的功能,但我不知道可能出现什么问题。
template<typename F, typename A>
static std::future<typename std::result_of<F(A&&)>::type> spawn_task(F&& f, A&& a)
{
typedef typename std::result_of<F(A&&)>::type result_type;
std::packaged_task<result_type(A&&)> task(std::move(f));
std::future<result_type> res(task.get_future());
std::thread(std::move(task), std::move(a));
return res;
}
template<typename T>
static std::list<T> parallel_quick_sort(std::list<T> input)
{
if (input.empty())
{
return input;
}
std::list<T> result;
result.splice(result.begin(), input, input.begin());
T const& partition_val = *result.begin();
typename std::list<T>::iterator divide_point = std::partition(
input.begin(), input.end(), [&](T const& t)
{ return t<partition_val;});
std::list<T> lower_part;
lower_part.splice(lower_part.end(), input, input.begin(), divide_point);
std::future<std::list<T> > new_lower(
spawn_task(¶llel_quick_sort<T>, std::move(lower_part)));
std::list<T> new_higher(parallel_quick_sort(std::move(input)));
result.splice(result.end(), new_higher);
result.splice(result.begin(), new_lower.get());
return result;
}
static void test()
{
std::list<int> toSort={1,4,3,6,4,89,3};
std::for_each(std::begin(toSort), std::end(toSort), [](int n){ std::cout << n << std::endl;});
std::list<int> sorted;
sorted=parallel_quick_sort(toSort);
std::for_each(std::begin(sorted), std::end(sorted), [](int n){ std::cout << n << std::endl;});
}
任何人都可以帮我吗?
答案 0 :(得分:3)
呃..我在谷歌的一些研究之后想出来了。
我修改了以下代码:
template<typename F, typename A>
static std::future<typename std::result_of<F(A&&)>::type> spawn_task(F&& f, A&& a)
{
typedef typename std::result_of<F(A&&)>::type result_type;
std::packaged_task<result_type(A&&)> task(std::move(f));
std::future<result_type> res(task.get_future());
std::thread myThread(std::move(task), std::move(a));
myThread.detach();
return res;
}
错误消息指出我有没有加入的线程。所以我应该加入或分离。所以我按上述方式做了。