gpt4 book ai didi

java - 这个空字符串检查是多余的吗?

转载 作者:搜寻专家 更新时间:2023-11-01 08:24:36 24 4
gpt4 key购买 nike

在 Android 的 frameworks/base/services/core/java/com/android/server/policy/PhoneWindowManager.java 中有这样的子句:

    //if device type is tablet force enable NavigationBar and forbid NavigationBar move
String deviceType = SystemProperties.get("sys.device.type");
if (! "".equals(deviceType) && deviceType.equals("tablet")) {
mNavigationBarCanMove = false;
mHasNavigationBar = true;
}

! "".equals(deviceType) && 完全多余,或者它有什么意义?

最佳答案

是的,在这种情况下它是多余的,因为第二个子句涉及第一个子句(如果 deviceType 不为空),因此您可以简化执行以下操作:

//Use constant string to perform comparison to avoid possible NPE
if("tablet".equals(deviceType)) {}

关于java - 这个空字符串检查是多余的吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46472772/

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