Flutter学习(2)Dart语言浅学,android动画原理
作者:互联网
bool isNoble(int atomicNumber) {
return _nobleGases[atomicNumber] != null;
}
注:如果函数没有显示声明返回值类型时,默认当做 dynamic
处理,函数返回值没有类型推断
2. 对于只包含一个表达式的函数,可以使用简写语法
bool isNoble(int atomicNumber) => _nobleGases[atomicNumber] != null;
3. 函数作为变量
var say = (str) {
print(str);
};
say(“hi world”);
4. 函数作为参数传递
void execute(var callback){
callback();
}
execute(() => print(“hi world”));
5. 可选的位置参数
包装一组函数参数,用 []标记为可选的位置参数,并放在参数列表的最后面:
String say(String from, String msg, [String devices]) {
var result = ‘$from says $msg’;
if (devices != null) {
result = ‘$result with a $devices’;
}
return result;
}
//不带可选参数调用这个函数
say(‘Rikka’, ‘Like LOL’);
//用第三个参数调用这个函数
say(‘Rikka’, ‘Like LOL’, ’ PUBG’);
6. 可选的命名参数
定义函数时,使用{param1, param2, …}放在参数列表的最后面,用于指定命名参数。例如:
//设置 [bold]和[hidden]标识
void enableFlags({bool bold, bool hidden}) {
// …
}
//在使用时需要标注参数名称:
enableFlags(bold: true, hidden: false);
Dart类库有非常多返回Future
或者 Stream
对象的函数。这些函数被称为 异步函数。异步嘛,肯定跟耗时是有关的。
在Dart中,使用 async
、await
关键词支持了异步编程。
1 . Future
Future
与JS中的 Promise
类似。表示一个异步操作最终完成的结果值表示。一个Future只会对应一个结果,要么成功,要么失败。
Future.then
我们创建一个示例:
Future.delayed(new Duration(seconds: 2), () {
ret
《Android学习笔记总结+最新移动架构视频+大厂安卓面试真题+项目实战源码讲义》
【docs.qq.com/doc/DSkNLaERkbnFoS0ZF】 完整内容开源分享
urn “Rikka The World”;
}).then((data) {
print(data);
});
Future.then是在delayed
方法执行完后再执行的
Future.catchError
如果异步任务发生错误,我们可以在catchError
中捕获错误
Future.delayed(new Duration(seconds: 2), () {
throw AssertionError(“Error!”);
}).then((data) {
print(“Success”);
}).catchError((e) {
print(e);
});
如果捕获到异常,then的代码就不会走了。
上述代码中,我们使用 catchError
来捕获错误,但是不仅仅catchError可以捕获,我们也可以使用then里面的参数来捕获:
Future.delayed(new Duration(seconds: 2), () {
throw AssertionError(“Error!”);
}).then((data) {
print(“Success”);
}, one rror: (e) {
print(e);
});
Future.whenComplete
我们会遇到无论异步执行成功或失败都要做的一些事的场景,比如在网络请求前加载对话框,或者在请求结束后关闭对话框,这种场景,有两种方法。第一种是分别在 then
或者 catch
中关闭一下对话框,第二种就是使用 Future
的 whenComplete
回调。
Future.delayed(new Duration(seconds: 2), () {
throw AssertionError(“Error!”);
}).then((data) {
print(“Success”);
}, one rror: (e) {
print(e);
}).whenComplete((){
//无论成功还是失败都会走到这里
});
就有点像Java中的 try-catch-finally 中的finally
Future.wait
有些时候,我们需要等待多个异步任务都执行结束后才进行一些操作。那这些操作我们应该在代码的哪个地方使用呢?答案就是使用Future.wait
,它接收一个Future数组参数,等待数组中所有的 Future都执行成功后,才会触发 then
的成功回调,只要有一个Future执行失败,就会触发错误回调。示例如下:
Future.wait([
//第一个耗时操作
Future.delayed(new Duration(seconds: 3), () {
return “Rikka”;
}),
//第二个耗时操作
Future.delayed(new Duration(seconds: 5), () {
return “The World”;
}),
]).then((results) {
print(results[0] + results[1]);
}, one rror: (e) {
print(e);
}).whenComplete(() {
//无论成功还是失败都会走到这里
});
5s后的输出结果为: Rikka The World
2. Async/await
Dart中的 async/await
回调地狱(Callback Hell)
如果代码中有大量异步逻辑,并且出现大量异步任务依赖其它异步任务的结果时,必然会出现Future.then回调中套回调情况。
JS中就是有这样的诟病,但是随着 Promise、async、await
的出现,这样的嵌套回调问题被解决。
学习文档中有个例子,有种登录情况,登录成功会获得用户ID,然后通过用户ID,再去请求用户个人信息,获取到用户个人信息后,为了使用方便,我们需要将其缓存在本地文件系统,代码如下:
//先分别定义各个异步任务
Future login(String userName, String pwd){
…
//用户登录
标签:异步,函数,浅学,delayed,Dart,Future,参数,print,android 来源: https://blog.csdn.net/m0_65511948/article/details/122235324