gpt4 book ai didi

if-statement - Dart 空/假/空检查 : How to write this shorter?

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

这是我对除空字符串、null 和 false 之外的所有内容的 true 代码:

if (routeinfo["no_route"] == "" || routeinfo["no_route"] == null || routeinfo["no_route"] == false) {
// do sth ...
}

这是我对除空字符串、null、false 或零以外的所有内容的 true 代码:
if (routeinfo["no_route"] == "" || routeinfo["no_route"] == null || routeinfo["no_route"] == false || routeinfo["no_route"] == 0) {
// do sth...
}

我怎样才能在 Dart 中写得更短?或者不可能?

最佳答案

你可以做

if (["", null, false, 0].contains(routeinfo["no_route"])) {
// do sth
}

关于if-statement - Dart 空/假/空检查 : How to write this shorter?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42446566/

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