Flutter Dart 語法糖 ??和.?詳解

1.dart ?.html 左邊若是爲空返回 null,不然返回右邊的值。this A?.B 若是 A 等於 null,那麼 A?.B 爲 null 若是 A 不等於 null,那麼 A?.B 等價於 A.B       void main() { Animal animal = new Animal('cat'); Animal empty = null; //animal 非
相關文章
相關標籤/搜索