gpt4 book ai didi

dart - 使用 Future 时 .then() 和 .whenCompleted() 方法之间的区别?

转载 作者:行者123 更新时间:2023-12-03 05:58:34 25 4
gpt4 key购买 nike

我正在探索 Dart 中的 Future,并且对 Future 提供的这两种方法 .then().whenCompleted() 感到困惑。它们之间的主要区别是什么?

假设我想使用 .readAsString() 读取 .txt,我会这样做:

void main(){
File file = new File('text.txt');
Future content = file.readAsString();
content.then((data) {
print(content);
});
}

因此 .then() 就像一个回调,一旦 Future 完成,就会触发一个函数。

但我看到还有 .whenComplete() 也可以在 Future 完成后触发函数。像这样的事情:

void main(){
File file = new File('text.txt');
Future content = file.readAsString();
content.whenComplete(() {
print("Completed");
});
}

我在这里看到的区别是 .then() 可以访问返回的数据!.whenCompleted() 的用途是什么?我们什么时候应该选择其中之一?

最佳答案

.whenComplete无论 Future 完成时是否出现错误,都会触发一个函数,而不是 .then将在 Future 完成且没有错误的情况下触发一个函数。

引自 .whenComplete API文档

This is the asynchronous equivalent of a "finally" block.

关于dart - 使用 Future 时 .then() 和 .whenCompleted() 方法之间的区别?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55381236/

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