Flutter异步Future
一、认识Future
1.创建Future
void testFuture(){
Future future = new Future(() => null);
future.then((_){
print("then");
}).then((){
print("whenComplete");
}).catchError((_){
print("catchError");
});
}
这里的执行结果是:
then
whenComplete
我们也可以直接在创建Future的时候直接输出一些内容,例如:
void testFuture2(){
Future f1 = new Future(() => print("1"));
Future f2 = new Future(() => print("2"));
Future f3 = new Future(() => print("3"));
}
输出结果是:
1
2
3
2.Future相关回调函数
future里面有几个函数:
then
:异步操作逻辑在这里写。
whenComplete
:异步完成时的回调。
catchError
:捕获异常或者异步出错时的回调。
因为这里面的异步操作过程中没有遇到什么错误,所以catchError回调不会调用。
async
关键字,表示异步操作,然后函数返回值写成Future
,然后我们可以new一个Future
,逻辑前面加上一个await
关键字,然后可以使用future.then
等操作。下面是一个示例操作,为了方便演示,这里的返回值的null。平时开发中如果请求网络返回的是json,我们可以把泛型写成String;泛型也可能是实体类(entity/domain),不过要做json转实体类相关操作。Future asyncDemo() async{
Future<Null> future = new Future(() => null);
await future.then((_){
print("then");
}).then((){
print("whenComplete");
}).catchError((_){
print("catchError");
});
}
二、创建多个Future的执行步骤
1.我们这里创建3个Future,我们看看执行过程:
void testFutureCreate1(){
Future f1 = new Future(() => null);
Future f2 = new Future(() => null);
Future f3 = new Future(() => null);
// 都是异步 空实现 顺序进行
f1.then((_) => print("1"));
f2.then((_) => print("2"));
f3.then((_) => print("3"));
}
我们可以看到执行结果是:
1
2
3
2.那么我们猜想是不是按照创建Future对象的先后顺序依次执行? 接下来我们打乱顺序,再试试看!
void testFutureCreate2(){
Future f2 = new Future(() => null);
Future f1 = new Future(() => null);
Future f3 = new Future(() => null);
f1.then((_) => print("1"));
f2.then((_) => print("2"));
f3.then((_) => print("3"));
}
2
1
3
我们可以看到输出结果是: 2 1 3
和我们创建Future对象的先后顺序完全一致。
3.接下来我们继续猜想打乱then的调用先后顺序试试看?会不会有影响?
void testFutureCreate3(){ Future f1 = new Future(() => null);
Future f2 = new Future(() => null);
Future f3 = new Future(() => null); f3.then((_) => print("3"));
f1.then((_) => print("1"));
f2.then((_) => print("2")); }
我们可以看到结果为1 2 3
,和我们调用then的先后顺序无关。:
1
2
3
4.【结论】: 创建多个Future,执行顺序和和创建Future的先后顺序有关,如果只是单独的调用then,没有嵌套使用的话,和调用then的先后顺序无关。
三、then函数嵌套使用的执行步骤
当then回调函数里面还有then回调的时候,这时候的流程跟前面就不太一样了,也是一个大坑,也是面试经常会被问到的一个知识点。
1.我们一开始就执行f1的then回调,接着是f2的then回调里面,包含一个f1的then回调,最后是f3的then回调。示例如下:
void testThen1() {
Future f1 = new Future(() => null);
Future f2 = new Future(() => null);
Future f3 = new Future(() => null); f1.then((_) => print("f1 -> f1"));
// f2 then 异步回调里面还有异步回调
f2.then((_) {
print("f2 -> f2");
f1.then((_) => print("f2.then -> f1"));
});
f3.then((_) => print("f3 -> f3"));
}
我们可以看到执行结果如下:
f1 -> f1
f2 -> f2
f2.then -> f1
f3 -> f3
2.接下来我们交换一下调用then的顺序。我们发现结果是一样的:
void testThen2() {
Future f1 = new Future(() => null);
Future f2 = new Future(() => null);
Future f3 = new Future(() => null); f2.then((_) {
print("f2 -> f2");
f1.then((_) => print("f2.then -> f1"));
});
f1.then((_) => print("f1 -> f1"));
f3.then((_) => print("f3 -> f3"));
}
结果还是一样的:
f1 -> f1
f2 -> f2
f2.then -> f1
f3 -> f3
3.接下来我们调整一下。
void testThen3() {
Future f1 = new Future(() => null);
Future f2 = new Future(() => null);
Future f3 = new Future(() => null); f1.then((_) => print("f1 -> f1"));
f3.then((_) {
print("f3 -> f3");
f1.then((_) => print("f3.then -> f1"));
});
f2.then((_) => print("f2 -> f2"));
}
运行结果是:
f1 -> f1
f2 -> f2
f3 -> f3
f3.then -> f1
这里再次证明了上面我的猜想:执行顺序和和创建Future的先后顺序有关,如果有多个then嵌套执行,先执行外面的then,然后执行里面的then。
4. 接下来我们在then内部创建一个Future 看看执行顺序如何?
void testThen4() {
Future f1 = new Future(() => null);
Future f2 = new Future(() => null);
Future f3 = new Future(() => null); f1.then((_) => print("f1 -> f1"));
f3.then((_) {
print("f3 -> f3");
new Future(() => print("f3.then -> new Future"));
f1.then((_) => print("f3.then -> f1"));
});
f2.then((_) => print("f2 -> f2"));
}
执行结果如下,我们可以看到then内部创建的Future要等到then执行完了,最后再去执行的:
f1 -> f1
f2 -> f2
f3 -> f3
f3.then -> f1
f3.then -> new Future
5.【结论】: 首先执行顺序和创建Future的先后顺序有关,如果遇到多个 then 嵌套,先执行外面的 then,然后再执行里面的then,如果then里面还有创建Future,要等到then执行完毕,之后执行Future。
四、综合示例
void testAll() {
Future f3 = new Future(() => null);
Future f1 = new Future(() => null);
Future f2 = new Future(() => null);
Future f4 = new Future(() => null);
Future f5 = new Future(() => null); f3.then((_) => print("f3.then -> f3"));
f2.then((_) => print("f2.then -> f2"));
f4.then((_) => print("f4.then -> f4")); f5.then((_) {
print("f5.then -> f5");
new Future(() => print("f5.then -> new Future"));
f1.then((_) {
print("f1.then -> f1");
});
});
}
根据上文总结的特点,我们可以不用运行也能推断出输出结果:
f3 f1 f2 f4 f5
依次执行。我们看到then函数的调用情况,f3先调用,所以它应该先输出。
紧接着是f2调用了,所以f2输出。
紧接着f4调用了,f4应该输出。
紧接着是f5调用
then
函数,这个比较特殊,它是then
函数的嵌套使用,首先是一个打印语句,直接输出,然后是new Future函数,它应该等then执行完毕再去执行,所以这里会去找下面的f1.then
里面的逻辑,然后输出f1,到此f5.then
都执行完毕,然后就是执行new Future
里面的逻辑(如果没有内部嵌套 then
的话,它就会直接输出。)为了验证我们的猜想,我们打印一下输出结果,果然我们的证明是正确的。
f3.then -> f3
f2.then -> f2
f4.then -> f4
f5.then -> f5
f1.then -> f1
f5.then -> new Future
五、我们来看看Future的源码说明文档
我们重点看看then函数的文档说明:
then
注册在 Future
完成时调用的回调。
当这个 Future
用一个 value
完成时,将使用该值调用onValue
回调。
如果 Future
已经完成,则不会立即调用回调,而是将在稍后的microtask(微任务)
中调度。
如果回调返回Future
,那么then
返回的future
将与callback
返回的future
结果相同。
onError
回调必须接受一个参数或两个参数,后者是[StackTrace]。
如果onError
接受两个参数,则使用错误和堆栈跟踪时调用它,否则仅使用错误对象时候调用它。
onError
回调必须返回一个可用于完成返回的future的值或future,因此它必须是可赋值给FutureOr <R>
的东西。
返回一个新的Future
,该Future
是通过调用onValue
(如果这个Future是通过一个value完成的)或'onError
(如果这个Future是通过一个error完成的)的结果完成的。
如果调用的回调抛出异常,返回的future
将使用抛出的错误和错误的堆栈跟踪完成。在onError
的情况下,如果抛出的异常与onError
的错误参数“相同(identical)”,则视为重新抛出,并使用原始堆栈跟踪替代
如果回调返回Future
,则then
返回的Future
将以与回调返回的Future
相同的结果完成。
如果未给出onError
,并且后续程序走了刚出现了错误,则错误将直接转发给返回的Future
。
在大多数情况下,单独使用catchError
更可读,可能使用test
参数,而不是在单个then
调用中同时处理value
和error
。
请注意,在添加监听器(listener)之前,future
不会延迟报告错误。如果第一个then
或catchError
调用在future
完成后发生error
,那么error
将报告为未处理的错误。
Flutter异步Future的更多相关文章
- Flutter 异步Future与FutureBuilder实用技巧
什么是Future? Future表示在接下来的某个时间的值或错误,借助Future我们可以在Flutter实现异步操作.它类似于ES6中的Promise,提供then和catchError的链式调用 ...
- Netty异步Future源码解读
本文地址: https://juejin.im/post/5df771ee6fb9a0161d743069 说在前面 本文的 Netty源码使用的是 4.1.31.Final 版本,不同版本会有一些差 ...
- flutter 异步async、await和Future的使用技巧
由于前面的HTTP请求用到了异步操作,不少小伙伴都被这个问题折了下腰,今天总结分享下实战成果.Dart是一个单线程的语言,遇到有延迟的运算(比如IO操作.延时执行)时,线程中按顺序执行的运算就会阻塞, ...
- Flutter异步与线程详解
一:前言 - 关于多线程与异步 关于 Dart,我相信大家都知道Dart是一门单线程语言,这里说的单线程并不是说Dart没有或着不能使用多线程,而是Dart的所有API默认情况下都是单线程的.但大家也 ...
- Flutter异步编程 http网络请求数据
import 'dart:convert'; import 'package:flutter/material.dart'; import 'package:http/http.dart' as ht ...
- Flutter main future mirotask 的执行顺序
下面这段代码的输出是什么? import 'dart:async'; main() { print('main #1 of 2'); scheduleMicrotask(() => print( ...
- 26Flutter 日期 和时间戳/格式化日期库/flutter异步/ 官方自带日期组件showDatePicker、时间组件showTimePicker以及国际化
/* 一.Flutter日期和时间戳 日期转换成时间戳 var now=newDateTime.now(); print(now.millisecondsSinceEpoch); //单位毫秒,13位 ...
- Rust异步之Future
对异步的学习,我们先从Future开始,学习异步的实现原理.等理解了异步是怎么实现的后,再学习Rust异步编程涉及的2个库(futures.tokio)的时候就容易理解多了. Future rust中 ...
- [Flutter] 一些面试可能会问基础知识
1. Flutter 是什么? Flutter是谷歌的移动UI框架,可以快速在iOS和Android上构建高质量的原生用户界面. Flutter可以与现有的代码一起工作.在全世界,Flutter正在被 ...
随机推荐
- radio赋值法
一般都会使用attr来使选中: $("#DIV的ID input[name='radio的name'][value="'+动态传的radio的value值+'"]&quo ...
- Django学习系列18:使用迁移创建生产数据库
Django生成一个很有帮助的错误信息,大意是说没有正确设置数据库. 你可能会有疑惑,为什么在单元测试一切都运行ok,这是因为Django为单元测试创建了专用的测试数据库——这是Django中Test ...
- java7连接数据库 网页 添加学生信息测试
石家庄铁道大学2019年秋季 2018 级课堂测试试卷(六)(10分) 课程名称: JAVA语言程序设计 任课教师: 王建民 考试时间: 150 分钟 一. 考试要求: 1登录账号 ...
- Mysql和ORACLE索引的实现方式
B-Tree和B+Tree 目前大部分数据库系统及文件系统都采用B-Tree或其变种B+Tree作为索引结构. 首先,对单个节点来说,是一个key value结构,key是作引的列,value有两种, ...
- mysql更改列属性的一些用法
更改mysql 主键属性 alter table rbac_auth change column id id int auto_increment
- vs2017 2019 下载更新慢的解决方法
国庆期间 下载的速度只有20多kb. 1.去掉网络适配器里面的 ip6勾选. 2.修改电脑的自动dns, 修改为1.1.1.1 , 修改为8.8.8.8 更快. 记得禁用再启用网络: dns为1. ...
- Python 创建数据库表
创建数据库表 如果数据库连接存在我们可以使用execute()方法来为数据库创建表,如下所示创建表EMPLOYEE: #!/usr/bin/python # -*- coding: UTF-8 -*- ...
- CF 25 E 三个字符串 KMP模板
Test Time Limit: 2000MS Memory Limit: 262144KB 64bit IO Format: %I64d & %I64u Submit Status ...
- Springboot 注册拦截器
拦截器 创建myInterceptor类 import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpSer ...
- (Java多线程系列一)快速入门
Java多线程快速入门 1.线程和进程的区别 进程是所有线程的集合,每一个线程是进程的一条执行路径. 2.多线程的应用场景 多线程主要体现在提高程序的效率,比如迅雷多线程下载,多线程分批发送短信等. ...