得到最后一个任务 (continuation)的结果?

时间:2022-06-07 02:17:33

I have this sample code :

我有这个示例代码:

Task<int> t1= new Task<int>(()=>1);
t1.ContinueWith(r=>1+r.Result).ContinueWith(r=>1+r.Result);
t1.Start();

Console.Write(t1.Result); //1

It obviously return the Result from the t1 task. ( which is 1)

它显然返回t1任务的结果。(1)

But how can I get the Result from the last continued task ( it should be 3 {1+1+1})

但是,我如何才能从最后的持续任务中得到结果(它应该是3 {1+1+1})

1 个解决方案

#1


4  

ContinueWith itself returns a task - Task<int> in this case. You can do anything (more or less - you can't manually Start a continuation, for example) you wish with this task that you could have done with the 'original' task, including waiting for its completion and inspecting its result.

在本例中,ContinueWith本身返回一个任务-任务 。您可以用这个任务做任何事情(或多或少——例如,您不能手动启动一个延续),您可以用这个任务完成“原始”任务,包括等待它完成并检查它的结果。

var t1 = new Task<int>( () => 1);
var t2 = t1.ContinueWith(r => 1 + r.Result)
           .ContinueWith(r => 1 + r.Result);

t1.Start();

Console.Write(t1.Result); //1
Console.Write(t2.Result); //3

#1


4  

ContinueWith itself returns a task - Task<int> in this case. You can do anything (more or less - you can't manually Start a continuation, for example) you wish with this task that you could have done with the 'original' task, including waiting for its completion and inspecting its result.

在本例中,ContinueWith本身返回一个任务-任务 。您可以用这个任务做任何事情(或多或少——例如,您不能手动启动一个延续),您可以用这个任务完成“原始”任务,包括等待它完成并检查它的结果。

var t1 = new Task<int>( () => 1);
var t2 = t1.ContinueWith(r => 1 + r.Result)
           .ContinueWith(r => 1 + r.Result);

t1.Start();

Console.Write(t1.Result); //1
Console.Write(t2.Result); //3