如何在 cpp 的线程中使用 = 运算符,它有啥好处? [复制]
Posted
技术标签:
【中文标题】如何在 cpp 的线程中使用 = 运算符,它有啥好处? [复制]【英文标题】:how to use = operator in threads in cpp and what is the benefit of it? [duplicate]如何在 cpp 的线程中使用 = 运算符,它有什么好处? [复制] 【发布时间】:2020-04-16 17:17:58 【问题描述】:std::thread([=]
//my statements and my other stuff, basically here i am updating the database accordingly some conditions.
).detach();
那么,这个有什么用途、好处或如何使用:std::thread([=]
【问题讨论】:
这是关于 lambda 中的捕获。.detach()
基本上总是wrong thing to do。
请注意,这不是 =
运算符。是=
字符,但它的作用和意义完全不同。
【参考方案1】:
在这段代码中,您使用 lambda 作为 std::thread 函数。 [=] 是一个捕获子句,表示按值捕获所有外部变量
auto lambdaExample = []() std::cout << "HELLO WORLD\n"; ;
【讨论】:
以上是关于如何在 cpp 的线程中使用 = 运算符,它有啥好处? [复制]的主要内容,如果未能解决你的问题,请参考以下文章