gpt4 book ai didi

flutter - 什么?在 Dart 中做什么?

转载 作者:行者123 更新时间:2023-12-03 02:49:25 25 4
gpt4 key购买 nike

"?."是什么意思语法在 Dart 语言中做什么?我这里有一个来自 Flutter 的 scaffold.dart 代码的例子:

_drawerKey.currentState?.open();

最佳答案

它是一个空安全运算符。

Use ?. when you want to call a method/getter on an object IF that object is not null (otherwise, return null).


_drawerKey.currentState?.open();

仅当 open() 不为空时才调用它。

更多信息: https://medium.com/@thinkdigitalsoftware/null-aware-operators-in-dart-53ffb8ae80bb

关于flutter - 什么?在 Dart 中做什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59241824/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com