gpt4 book ai didi

android - 摆脱 Android Studio 中的警告

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:36:34 26 4
gpt4 key购买 nike

Android studio 似乎认为 SparseArray 值不能为 null

当我写作时

public static void foo() {
SparseArray<Object> sparseArray = new SparseArray<Object>();
sparseArray.put(0, null);
if (sparseArray.valueAt(0) == null)
Log.d("MyClass", "Hello World");
}

我收到警告

condition 'sparseArray.valueAt(0) == null' is always 'false'

我只想知道我需要添加什么注释或注释来消除警告。我不想禁用检查,只是摆脱这个特定的警告。谢谢。

最佳答案

您可以使用 //noinspection <inspectionname> 在本地抑制检查.

例如:

//noinspection ConstantConditions
if (sparseArray.valueAt(0) == null)

摆脱这个错误的警告。

关于android - 摆脱 Android Studio 中的警告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32158258/

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