gpt4 book ai didi

c# - 从线程返回一个值?

转载 作者:IT王子 更新时间:2023-10-29 03:36:50 24 4
gpt4 key购买 nike

如何从线程返回值?

最佳答案

从线程获取返回值的最简单方法之一是使用闭包。创建一个变量来保存线程的返回值,然后在 lambda 表达式中捕获它。从工作线程将“返回”值分配给此变量,然后一旦该线程结束,您就可以从父线程使用它。

void Main()
{
object value = null; // Used to store the return value
var thread = new Thread(
() =>
{
value = "Hello World"; // Publish the return value
});
thread.Start();
thread.Join();
Console.WriteLine(value); // Use the return value here
}

关于c# - 从线程返回一个值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1314155/

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