可能重复:
为什么存在 async 关键字
我有两种方法。一种是普通方法(MyMethod
),一种是异步方法(MyMethodAsync
)。我得到一个编译错误。
static string MyMethod()
{
var result = await MyMethodAsync(); // compile error here
return result;
}
async static Task<string> MyMethodAsync()
{
/** perform my logic here... **/
Thread.Sleep(1000);
return "yes";
}
错误信息是
'await' 运算符只能在异步方法中使用。考虑使用“异步”修饰符标记此方法并将其返回类型更改为“任务”。
我很困惑。当我使用await
关键字时,调用线程将被挂起并等待任务完成。所以一旦await
被使用,该方法就不再是异步方法了。正确的?
备注:我知道我应该把逻辑MyMethod
和MyMethodAsync
调用MyMethod
来实现我想要的。