Dart language support async/await programming style, or similar?
This question already has an answer here:
Not for now. See issue Support for "await" in Dart.
Basic support is already available.
See https://www.dartlang.org/articles/await-async/ for more details.
main() async {
print(await foo());
try {
print(await fooThrows());
} catch(e) {
print(e);
}
}
foo() async => 42;
fooThrows() async => throw 'Anything';
链接地址: http://www.djcxy.com/p/72636.html
上一篇: 在VBA中评估()