Dart异步编程-future
Dart异步编程包含两部分:Future和Stream
该篇文章中介绍Future
异步编程:Futures
Dart是一个单线程编程语言。如果任何代码阻塞线程执行都会导致程序卡死。异步编程防止出现阻塞操作。Dart使用Future对象表示异步操作。
介绍
如下代码可能导致程序卡死
// Synchronous code
printDailyNewsDigest() {
String news = gatherNewsReports(); // Can take a while.
print(news);
} main() {
printDailyNewsDigest();
printWinningLotteryNumbers();
printWeatherForecast();
printBaseballScore();
}
该程序获取每日新闻然并打印,然后打印其他一系列用户感兴趣的信息:
<gathered news goes here>
Winning lotto numbers: [, , , , ]
Tomorrow's forecast: 70F, sunny.
Baseball score: Red Sox , Yankees
该代码存在问题printDailyNewsDigest读取新闻是阻塞的,之后的代码必须等待printDailyNewsDigest结束才能继续执行。当用户想知道自己是否中彩票,明天的天气和谁赢得比赛,都必须等待printDailyNewsDigest读取结束。
为了程序及时响应,Dart的作者使用异步编程模型处理可能耗时的函数。这个函数返回一个Future
什么是Future
Future表示在将来某时获取一个值的方式。当一个返回Future的函数被调用的时候,做了两件事情:
1. 函数把自己放入队列和返回一个未完成的Future对象
2. 之后当值可用时,Future带着值变成完成状态。
为了获得Future的值,有两种方式:
1. 使用async和await
2. 使用Future的接口
Async和await
async和await关键字是Dart异步支持的一部分。他们允许你像写同步代码一样写异步代码和不需要使用Future接口。
注:在Dart2中有轻微的改动。async函数执行时,不是立即挂起,而是要执行到函数内部的第一个await。在多数情况下,我们不会注意到这一改动
下面的代码使用Async和await读取新闻
// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file. import 'dart:async'; printDailyNewsDigest() async {
String news = await gatherNewsReports();
print(news);
} main() {
printDailyNewsDigest();
printWinningLotteryNumbers();
printWeatherForecast();
printBaseballScore();
} printWinningLotteryNumbers() {
print('Winning lotto numbers: [23, 63, 87, 26, 2]');
} printWeatherForecast() {
print("Tomorrow's forecast: 70F, sunny.");
} printBaseballScore() {
print('Baseball score: Red Sox 10, Yankees 0');
} const news = '<gathered news goes here>';
Duration oneSecond = const Duration(seconds: ); final newsStream = new Stream.periodic(oneSecond, (_) => news); // Imagine that this function is more complex and slow. :)
Future gatherNewsReports() => newsStream.first; // Alternatively, you can get news from a server using features
// from either dart:io or dart:html. For example:
//
// import 'dart:html';
//
// Future gatherNewsReportsFromServer() => HttpRequest.getString(
// 'https://www.dartlang.org/f/dailyNewsDigest.txt',
// );
执行结果:
Winning lotto numbers: [, , , , ]
Tomorrow's forecast: 70F, sunny.
Baseball score: Red Sox , Yankees
<gathered news goes here>
从执行结果我们可以注意到printDailyNewsDigest是第一个调用的,但是新闻是最后才打印,即使只要一行内容。这是因为代码读取和打印内容是异步执行的。
在这个例子中间,printDailyNewsDigest调用的gatherNewsReports不是阻塞的。gatherNewsReports把自己放入队列,不会暂停代码的执行。程序打印中奖号码,天气预报和比赛分数;当gatherNewsReports完成收集新闻过后打印。gatherNewsReports需要消耗一定时间的执行完成,而不会影响功能:用户在读取新闻之前获得其他消息。
下面的图展示代码的执行流程。每一个数字对应着相应的步骤
1. 开始程序执行
2. main函数调用printDailyNewsDigest,因为它被标记为async,所有在该函数任何代码被执行之前立即返回一个Future。
3. 剩下的打印执行。因为它们是同步的。所有只有当一个打印函数执行完成过后才能执行下一个打印函数。例如:中奖号码在天气预报执行打印。
4. 函数printDailyNewsDigest函数体开始执行
5. 在到达await之后,调用gatherNewsReports,程序暂停,等待gatherNewsReports返回的Future完成。
6. 当Future完成,printDailyNewsDigest继续执行,打印新闻。
7. 当printDailyNewsDigest执行完成过后,最开始的Future返回完成,程序退出。
注:如果async函数没有明确指定返回值,返回的null值的Future
错误处理
如果在Future返回函数发生错误,你可能想捕获错误。Async函数可以用try-catch捕获错误。
printDailyNewsDigest() async {
try {
String news = await gatherNewsReports();
print(news);
} catch (e) {
// Handle error...
}
}
try-catch在同步代码和异步代码的表现是一样的:如果在try块中间发生异常,那么在catch中的代码执行
连续执行
你可以使用多个await表达式,保证一个await执行完成过后再执行下一个
// Sequential processing using async and await.
main() async {
await expensiveA();
await expensiveB();
doSomethingWith(await expensiveC());
}
expensiveB函数将等待expensiveA完成之后再执行。
Future API
在Dart1.9之前还没有添加async和await时,你必须使用Future接口。你可能在一些老的代码中间看到使用Future接口
为了使用Future接口写异步代码,你需要使用then()方法注册一个回调。当Future完成时这个回调被调用。
下面的代码使用Future接口:
// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file. import 'dart:async'; printDailyNewsDigest() {
final future = gatherNewsReports();
future.then((news) => print(news));
} main() {
printDailyNewsDigest();
printWinningLotteryNumbers();
printWeatherForecast();
printBaseballScore();
} printWinningLotteryNumbers() {
print('Winning lotto numbers: [23, 63, 87, 26, 2]');
} printWeatherForecast() {
print("Tomorrow's forecast: 70F, sunny.");
} printBaseballScore() {
print('Baseball score: Red Sox 10, Yankees 0');
} const news = '<gathered news goes here>';
Duration oneSecond = const Duration(seconds: ); final newsStream = new Stream.periodic(oneSecond, (_) => news); // Imagine that this function is more complex and slow. :)
Future gatherNewsReports() => newsStream.first; // Alternatively, you can get news from a server using features
// from either dart:io or dart:html. For example:
//
// import 'dart:html';
//
// Future gatherNewsReportsFromServer() => HttpRequest.getString(
// 'https://www.dartlang.org/f/dailyNewsDigest.txt',
// );
注意到printDailyNewsDigest被首先调用,但是新闻在最后被打印。这是因为代码读取内容是异步执行的。
程序执行流程:
1. 程序开始执行
2. main函数调用printDailyNewsDigest函数,在函数内部调用gatherNewsReports
3. gatherNewsReports收集新闻然后返回一个Future
4. printDailyNewsDigest使用then指定Future的响应函数。调用then()返回的新Future将使用then指定回调返回的值完成。
5. 剩下的打印函数同步执行,因为他们是同步的
6. 当所有新闻到达,gatherNewsReports返回的Future带着一个包含新闻的字符串完成
7. 在printDailyNewsDigest中then函数指定的回调函数执行。打印新闻
8. 程序退出
在printDailyNewsDigest函数中then可以多种不同的方式写。
1. 使用花括号。当有多个操作的时候,这种方式比较方便
printDailyNewsDigest() {
final future = gatherNewsReports();
future.then((news) {
print(news);
// Do something else...
});
}
2. 直接传print函数
printDailyNewsDigest() =>
gatherNewsReports().then(print);
错误处理
使用Future接口,你可以使用catchError捕获错误
printDailyNewsDigest() =>
gatherNewsReports()
.then((news) => print(news))
.catchError((e) => handleError(e));
如果新闻不可用,那么代码的执行流程如下:
1. gatherNewsReports的Future带一个Error完成。
2. then的Future带一个Error完成。
3. catchError的回调处理错误,catchError的Future正常结束,错误不在被传递。
当使用Future接口时,在then后连接catchError,可以认为这一对接口相应于try-catch。
像then(), catchError返回一个带回调返回值的新Future
使用then连接多个函数
当Future返回时需要顺序执行多个函数是,可以串联then调用
expensiveA()
.then((aValue) => expensiveB())
.then((bValue) => expensiveC())
.then((cValue) => doSomethingWith(cValue));
使用Future.wait等待多个Future完成
当wait的所有Future完成时,Future.wait返回一个新的Future。这个Future带了一个包含所有等待结果的列表。
Future
.wait([expensiveA(), expensiveB(), expensiveC()])
.then((List responses) => chooseBestResponse(responses))
.catchError((e) => handleError(e));
当任意一个调用以error结束时,那么Future.wait也以一个Error结束。使用catchError处理错误
参考: https://www.dartlang.org/tutorials/language/futures
Dart异步编程-future的更多相关文章
- Dart 异步编程相关概念简述
目录 isolate: event loop: Future: async/await: 总结 参考链接 学习 Dart 的异步编程时,需要对异步编程所涉及的相关知识体系进行梳理,我们可根据以下几 ...
- Netty 中的异步编程 Future 和 Promise
Netty 中大量 I/O 操作都是异步执行,本篇博文来聊聊 Netty 中的异步编程. Java Future 提供的异步模型 JDK 5 引入了 Future 模式.Future 接口是 Java ...
- Dart 异步编程(三):详细认识
基本概念 普通任务按照顺序执行:异步任务将在未来的某个时间执行. 实际演示 void main() { // waitFuture 函数是一个异步函数,阻塞会发生在函数内部 waitFuture(); ...
- Dart 异步编程(二):async/await
对每一个异步任务返回的 Future 对象都使用链式操作-- then ,超过三个以上时,导致"倒三角"现象,降低代码的可阅读性. getHobbies() { post('htt ...
- Dart 异步编程(一):初步认识
由于 Dart 是单线程编程语言,对于进行网络请求和I/O操作,线程将发生阻塞,严重影响依赖于此任务的下一步操作. 通常,在一个阻塞任务之后还有许许多多的任务等待被执行.下一步任务需要上一步任务的结果 ...
- flutter中的异步机制Future
饿补一下Flutter中Http请求的异步操作. Dart是一个单线程语言,可以理解成物理线路中的串联,当其遇到有延迟的运算(比如IO操作.延时执行)时,线程中按顺序执行的运算就会阻塞,用户就会感觉到 ...
- flutter中的异步机制 Future
饿补一下Flutter中Http请求的异步操作. Dart是一个单线程语言,可以理解成物理线路中的串联,当其遇到有延迟的运算(比如IO操作.延时执行)时,线程中按顺序执行的运算就会阻塞,用户就会感觉到 ...
- Flutter 的异步机制Future
Dart是一个单线程语言,可以理解成物理线路中的串联,当其遇到有延迟的运算(比如IO操作.延时执行)时,线程中按顺序执行的运算就会阻塞,用户就会感觉到卡顿,于是通常用异步处理来解决这个问题. Dart ...
- dart系列之:dart中的异步编程
目录 简介 为什么要用异步编程 怎么使用 Future 异步异常处理 在同步函数中调用异步函数 总结 简介 熟悉javascript的朋友应该知道,在ES6中引入了await和async的语法,可以方 ...
随机推荐
- js(JavaScript)使用${pageContext.request.contextPath}报错
前几天写程序在js文件中用到了${pageContext.request.contextPath}然后一直报错,没有办法post到服务器,原来js把这个当成字符串了,一直以为他是jquery的函数! ...
- junit基础学习之-断言注解(3)
断言是编写测试用例的核心实现方式,即期望值是多少,测试的结果是多少,以此来判断测试是否通过. 断言核心方法 assertArrayEquals(expecteds, actuals) 查看两个数组是否 ...
- 【剑指Offer】面试题07. 重建二叉树
题目 输入某二叉树的前序遍历和中序遍历的结果,请重建该二叉树.假设输入的前序遍历和中序遍历的结果中都不含重复的数字. 例如,给出 前序遍历 preorder = [3,9,20,15,7] 中序遍历 ...
- 使用kali中的Metasploit通过windows7的永恒之蓝漏洞攻击并控制win7系统(9.27 第十三天)
1.开启postgresql数据库 2.msfconsole 进入MSF中 3.search 17-010 搜索cve17-010相关的exp auxiliary/scanner/smb/smb_ms ...
- POJ 1126:Simply Syntax
Simply Syntax Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 5264 Accepted: 2337 Des ...
- 洛谷 P1470 最长前缀 Longest Prefix
题目传送门 解题思路: 其实思路没那么难,就是题面不好理解,解释一下题面吧. 就是在下面的字符串中找一个子串,使其以某种方式被分解后,每部分都是上面所给集合中的元素. AC代码: #include&l ...
- SpringAOP切入点的表达式
1. 常用的切入点表达式分为: (1)按类型匹配:within 关键字 (2)按函数匹配:execution (3)按bean的id匹配:bean 2.按类匹配的写法 匹配到具体的类:<aop ...
- Mybatis报错——Mapped Statements collection already contains value for
解决办法: 看看你的mybatis-config.xml <mappers> <mapper resource="mapper/SeckillDao.xml&quo ...
- CocoaPods安装/卸载/初始化等常用操作
CocoaPods的官网:https://cocoapods.org/,官方指导文档https://guides.cocoapods.org/ 1)ruby gem源更换国内源gems.ruby-ch ...
- Relu激活函数的优点
Relu优点: 1.可以使网络训练更快. 相比于sigmoid.tanh,导数更加好求,反向传播就是不断的更新参数的过程,因为其导数不复杂形式简单. 2.增加网络的非线性. 本身为非线性函数,加入到神 ...