3

我在网上搜索了所有答案,但没有找到任何解决方案。你能帮忙吗?我的问题是我试图将 Lambda 发送到另一个函数并使用Pthread库跨多个线程运行 lambda。接下来是代码:

  1    #include <iostream>
  2    #include <stdlib.h>
  3    #include <pthread.h>
  4    #include <vector>
  5 
  6    using namespace std;
  7 
  8 
  9   template<class InputIt, class Function>
 10    inline Function parallel_fun(InputIt first, InputIt last, Function f)
 11    {
 12         pthread_t threads[4];
 13 
 14       for (int i=0; first != last; ++first) {
 15 
 16          pthread_create(&threads[i], nullptr,f , nullptr);
 17 
 18           i++;
 19        }
 20 
 21      for (int i=0; i<4;i++) {
 22 
 23          pthread_join(threads[i],nullptr);
 24 
 25 
 26        }
 27 
 28 
 29 
 30 
 31    return f;
 32   }
 33 
 34 
 35    int main()
 36   {
 37    int z=90;
 38    vector<int> a(4);
 39     a[0]=1; a[1]=2;
 40     parallel_fun(a.begin(), a.end(), [=](void* data) -> void*
 41                     {
 42          cout<<"test"<<z<<endl;
 43            //do something
 44          });
 45 
 46 
 47 
 48 return 0;
 49 }

我使用以下行进行编译:g++ -std=c++0x -pthread test.cpp -o a

我收到这个错误:

test.cpp: In function ‘Function parallel_fun(InputIt, InputIt, Function) [with InputIt = __gnu_cxx::__normal_iterator<int*, std::vector<int> >, Function = main()::<lambda(void*)>]’:
test.cpp:44:11:   instantiated from here
test.cpp:16:10: error: cannot convert ‘main()::<lambda(void*)>’ to ‘void* (*)(void*)’ for argument ‘3’ to ‘int pthread_create(pthread_t*, const pthread_attr_t*, void* (*)(void*), void*)’
4

2 回答 2

6

我不确定新的 C++11 API。我认为我没有足够的时间来学习新的 API。

这是你的幸运日。C++11 API 深受 pthreads 的影响。几乎有机械翻译。这是您在 C++11 中转换的代码:

#include <iostream>
#include <stdlib.h>
#include <thread>
#include <vector>

template<class InputIt, class Function>
inline
Function
parallel_fun(InputIt first, InputIt last, Function f)
{
    std::thread threads[4];
    for (int i=0; first != last; ++first)
    {
        threads[i] = std::thread(f);
        i++;
    }
    for (int i=0; i<4;i++)
    {
        threads[i].join();
    }
    return f;
}


int main()
{
    int z=90;
    std::vector<int> a(4);
    a[0]=1; a[1]=2;
    parallel_fun(a.begin(), a.end(), [=]()
                                      {
                                        std::cout<<"test" << z << std::endl;
                                        //do something
                                      });
}

您的替代方法是弄清楚如何std::thread在 pthreads 之上实现,相信我,这比上面显示的 C++11 翻译复杂得多。

于 2013-06-25T23:21:03.877 回答
3

除非lambda 没有捕获,否则不会从 lambda 转换为函数指针。(§5.1.2p6)。因此,如果您需要捕获z,那您就不走运了。

C 接口希望您使用void*闭包的参数。您可以这样做,这会很丑陋(但类似于 C),或者如果您的 C++ 环境支持,您可以使用新的 C++11 线程支持库。

于 2013-06-25T22:21:33.920 回答