gpt4 book ai didi

C++ Thread函数通过引用传递

转载 作者:行者123 更新时间:2023-11-28 04:39:57 24 4
gpt4 key购买 nike

我想知道我们如何添加一个通过引用传递给线程的函数。我在 Internet 上找到的整数示例非常简单,但找不到任何通过引用传递的示例?

    #include <iostream>
#include <thread>

void add(int a, int b)
{

std::cout << a + b << std::endl;

}

void sub(int c, int d) {
std::cout<< c - d << std::endl;
}

void addp(int &a1, int &a2) {
std::cout << a1 + a2 << std::endl;
}

int main() {
int number1 = 25;
int number2 = 50;
toplamap(number1, number2);
std::thread first(add, 10, 29);
std::thread second(sub, 29, 10);
std::thread third(addp, number1, number2);
first.join();
second.join();
third.join();

return 0;
}

最佳答案

解决方案 1:使用 std::ref :

    int number1 = 25;
int number2 = 50;
std::thread third(addp, std::ref(number1), std::ref(number2));

解决方案 2:使用 lambda:

    int number1 = 25;
int number2 = 50;
std::thread third([&] { addp(number1, number2); });

关于C++ Thread函数通过引用传递,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50424653/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com