gpt4 book ai didi

c# - 为什么此代码忽略等待并继续进行?

转载 作者:太空宇宙 更新时间:2023-11-03 21:36:04 25 4
gpt4 key购买 nike

我有以下代码:

public Index () {
InitializeIndexAsync();
}

async Task InitializeIndexAsync () {
State = IndexState.Initializing;
await Task.Factory.StartNew(async () => {
// Initialize other things.

await IndexAsync();
});

State = IndexState.Ready;
}

我希望“State = IndexState.Ready”在异步 lambda 完成之前不会被命中,但调试显示该行在线程启动之前很久就被命中了。这是为什么?

最佳答案

StartNew does not understand async lambdas ,所以当你传递一个 async 时lambda,它将返回一个 Task<Task> .从概念上讲,“外部”任务仅代表 async开始 lambda ; “内部”任务代表 async完成 lambda 。

这是 reasons that StartNew is the wrong choice for async code 之一,正如我在我的博客上解释的那样。更好的解决方案是使用 Task.Run , 这是用 async 设计的记在心里:

async Task InitializeIndexAsync () {
State = IndexState.Initializing;
await Task.Run(async () => {
// Initialize other things.

await IndexAsync();
});

State = IndexState.Ready;
}

关于c# - 为什么此代码忽略等待并继续进行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21791458/

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