非静态成员失败的线程调用函数

Thread calling function with non-static members failing

本文关键字:调用 函数 线程 静态成员 失败      更新时间:2023-10-16

我创建了一个函数void top()通过为每个像素发送一条光线来渲染图像。我想把它放在一个线上。我使用了#include <thread>库,但是当我在main()方法中声明线程时,它给了我两个错误:错误 C2893 无法专用函数模板"未知类型 std::invoke(_Callable &&,_Types &&...( noexcept((错误 C2672 'std::invoke':没有匹配的重载函数。我认为这可能是因为void top()同时调用非静态和静态方法。只是学习线程,所以对问题所在有点困惑。下面的所有函数都在主 cpp 文件中。

void top(int& samples_per_pixel, camera& cam, const color& background, hittable& world, const int& max_depth) {
for (float j = image_height - 1; j >= image_height/2; --j) {
for (int i = 0; i < image_width; ++i) {
color pixel_color(0, 0, 0);
for (int s = 0; s < samples_per_pixel; ++s) {
auto u = (i + random_double()) / (image_width - 1); //Random double is static. From other header file
auto v = (j + random_double()) / (image_height - 1);
ray r = cam.get_ray(u, v); //get_ray() is non-static and in camera class
pixel_color += ray_color(r, background, world, max_depth); //Ray_color defined above top() method in same main cpp file
pixel_color += color(0, 0, 0);
}
auto r = pixel_color.x();
auto g = pixel_color.y();
auto b = pixel_color.z();
auto scale = 1.0 / samples_per_pixel;
r = sqrt(scale * r);
g = sqrt(scale * g);
b = sqrt(scale * b);
int ir = static_cast<int>(256 * clamp(r, 0.0, 0.999));
int ig = static_cast<int>(256 * clamp(g, 0.0, 0.999));
int ib = static_cast<int>(256 * clamp(b, 0.0, 0.999));
pixels[index++] = ir; //pixels defined above top() class
pixels[index++] = ig;
pixels[index++] = ib;
}
}
}
...
int main(){
...
std::thread first(top,samples_per_pixel, cam, background, world, max_depth); //Two errors being called here
first.detach();
}

来自 'std::thread::thread:

线程函数的参数按值移动或复制。如果需要将引用参数传递给线程函数,则必须将其包装(例如,使用std::refstd::cref(。

因此,只需将您通过引用获取的每个变量包装在其中一个包装器中即可。 如果您不更改线程中的值并相应地调整函数的签名,则更喜欢std::cref

与其传递const int&,不如传递int

例:

// new signature:
void top(int samples_per_pixel, camera& cam, const color& background,
hittable& world, int max_depth);
// new starting call:
std::thread first(top, samples_per_pixel, std::ref(cam), std::cref(background),
std::ref(world), max_depth);