From 7181c1bd1e236e6f6df92cd8fcdbd125905d0f26 Mon Sep 17 00:00:00 2001 From: shaoyong Date: Sun, 25 Oct 2020 17:45:44 +0800 Subject: [PATCH] fix: #2435 --- Reports/2020/#133-2020.10.26.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Reports/2020/#133-2020.10.26.md b/Reports/2020/#133-2020.10.26.md index 09250656f..fbbc868a1 100644 --- a/Reports/2020/#133-2020.10.26.md +++ b/Reports/2020/#133-2020.10.26.md @@ -13,7 +13,9 @@ ## 新手推荐 -> 收集一些对新手友好且质量不错的文章 +### 🌟 🐢 [深入理解 Dart 空安全](https://mp.weixin.qq.com/s/MEL5kokoyb0CJcjrPpo12w) + +[@CrazyCoderShi](https://github.com/CrazyCoderShi): 空安全已经成为现代编程语言的一个标配,比如 Swift 中的 Optional。 空安全机制,使得我们可以更加优雅的编写判空代码,同时代码健壮性也得到了极大提升。 Dart 自然也不例外,自 Dart 2.0 以后引入了空安全机制,但少有人能完整理解,甚至于现在可以在很多 Flutter 项目中看不到相应的代码,本文由 Google Dart 团队工程师 Bob Nystrom 分享,为你详细讲解 Dart 空安全机制,强烈推荐。 ## 文章