Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在空安全更新后检查文本是否为空。
这是我以前的代码
if (k.text != null) { print('not null'); } else { print('null'); }
零安全后如何执行相同的操作
k.text如果您认为可以,没有什么改变,null那么您只需要添加?此符号
k.text
null
?
例如
Object? k
所以你的代码变成了
if (k?.text != null) { print('not null'); } else { print('null'); }