可以用Dart语言编写类似的代码吗?
int i;
try {
i = await getResultAsync();
} catch(exception) {
// Do something
}
答案 0 :(得分:3)
基本支持已经可用 有关详细信息,请参阅https://www.dartlang.org/articles/await-async/。
main() async {
print(await foo());
try {
print(await fooThrows());
} catch(e) {
print(e);
}
}
foo() async => 42;
fooThrows() async => throw 'Anything';
答案 1 :(得分:2)
不是现在。请参阅问题Support for "await" in Dart。