使用 std::shared_ptr 的线程构建块

Threading Building Blocks using std::shared_ptr

我刚刚开始使用 TBB。不得不说它看起来很不错,但是我 运行 进入了以下问题。将 lambda 与 std::shared_ptr 一起使用似乎不起作用。

source_node<int>(g,[&](int& val) -> bool {val = 0; return true;},false);
source_node<std::shared_ptr<int>(g,[&](std::shared_ptr<int> val) -> bool {val = std::make_shared<int>(0);return true;},false);

编译错误如下:

error: C2665: 'std::shared_ptr<int>::shared_ptr' : none of the 5 overloads could convert all the argument types
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\memory(504): could be 'std::shared_ptr<int>::shared_ptr<main::<lambda_484cee4d4b0231890bebaeba94e0ddad>,bool>(std::nullptr_t,_Dx,_Alloc)'
with
[
    _Dx=main::<lambda_484cee4d4b0231890bebaeba94e0ddad>
]

基本上 int 已替换为 std::shared_ptr。

如有任何想法,我们将不胜感激!

问候奥克

谢谢迈克西摩

source_node<std::shared_ptr<int>>(g,[&](std::shared_ptr<int> val) -> bool {val = std::make_shared<int>(0);return true;},false);