0

我的线程程序有问题。我知道问题是什么,只是不知道如何解决。我正在设置任意数量的线程来创建 mandelbrot 集,然后将其写入 ppm 文件。我正在使用 std::thread 的向量并调用 Mandelbrot 类成员函数来执行线程。问题发生在这里。我正在调用编译器不喜欢的 void(void) 函数。我该如何解决这个问题,以便线程执行 void(void) 函数?我的代码如下:

主文件

int main(int argc, char **argv) {
   const unsigned int WIDTH = 1366;
   const unsigned int HEIGHT = 768;
   int numThreads = 2;

   Mandelbrot mandelbrot(WIDTH, HEIGHT);

   if(argc > 1) {
      numThreads = atoi(argv[1]);
   }

   std::vector<std::thread> threads;

   for(int i = 0; i < numThreads; ++i) {
      threads.emplace_back(mandelbrot.mandelbrotsetThreaded());
   }

   for(int i = 0; i < numThreads; ++i) {
      threads[i].join();
   }

   return 0;
}

曼德尔布罗特.cpp

void Mandelbrot::mandelbrotsetThreaded() {
   while(true) {
      int row = 0;
      {
         std::lock_guard<std::mutex> lock(row_mutex);
         row = cur_row++;
      }
      if(row == width) return;
      createMandelbrotSet(row);
   }
}
4

1 回答 1

5
threads.emplace_back(mandelbrot.mandelbrotsetThreaded());
//                                                   ^^
//                                               note this!

那条小线实际上会调用 mandelbrot.mandelbrotsetThreaded()并尝试使用返回值传递给threads.emplace_back(). 当返回类型被指定为时,它会发现这相当困难void:-)

您想要的是函数(地址)本身,而不是函数的结果,例如:

threads.emplace_back(mandelbrot.mandelbrotsetThreaded);
于 2014-01-25T04:47:11.633 回答