上一页 1 ··· 47 48 49 50 51 52 53 54 55 ··· 86 下一页
摘要: 官网镜像仓库 https://hub.docker.com/ 阅读全文
posted @ 2019-04-08 22:10 富坚老贼 阅读(486) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-04-08 21:07 富坚老贼 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-04-05 20:47 富坚老贼 阅读(159) 评论(0) 推荐(0) 编辑
摘要: C:\ProgramData\Microsoft\Windows\Start Menu\Programs 阅读全文
posted @ 2019-04-05 20:08 富坚老贼 阅读(238) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/zhang_kun123/article/details/50548007 阅读全文
posted @ 2019-04-05 14:33 富坚老贼 阅读(120) 评论(0) 推荐(0) 编辑
摘要: 1.一个最简单的异步 main(){ test(); print("end"); } Future<void> test(){ return Future.delayed(Duration( seconds: 3),()=> print("hello")); } end 3秒后打印后打印hello; 阅读全文
posted @ 2019-04-05 09:22 富坚老贼 阅读(148) 评论(0) 推荐(0) 编辑
摘要: 1.异步循环 逻辑上是按顺序执行的,但是这种写法,在有UI界面的情况下耗时的方法不会卡死界面。 main() async{ var data = [1, 2, 3, 4]; var stream = new Stream.fromIterable(data); var sum=await sumSt 阅读全文
posted @ 2019-04-04 10:01 富坚老贼 阅读(451) 评论(0) 推荐(0) 编辑
摘要: 官网:https://flutter.dev/community/china 路径设置 FLUTTER_STORAGE_BASE_URL: https://mirrors.sjtug.sjtu.edu.cn/ PUB_HOSTED_URL: https://dart-pub.mirrors.sjtu 阅读全文
posted @ 2019-04-03 10:59 富坚老贼 阅读(2218) 评论(0) 推荐(0) 编辑
摘要: 默认使用slf4j抽象层和logback日志 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-logging</artifactId> </dependency> Log 阅读全文
posted @ 2019-04-02 21:58 富坚老贼 阅读(249) 评论(0) 推荐(0) 编辑
摘要: 延迟执行 Future.delayed main(){ print('abc'); Duration drt = new Duration(seconds:10);//设置一个10秒的延迟 Future.delayed(drt,(){ print('edf');//延迟执行的程序 }); } 阅读全文
posted @ 2019-04-01 16:01 富坚老贼 阅读(165) 评论(0) 推荐(0) 编辑
上一页 1 ··· 47 48 49 50 51 52 53 54 55 ··· 86 下一页