Android Studio:为if语句抑制lint警告

Android Studio:为if语句抑制lint警告,第1张

概述我的 Android项目中有一个这样的代码: public boolean isLoadInProgress(boolean privateLoad, boolean publicLoad) { if (privateLoad && privateLoadInProgress) { return true; } if (publicLoad && publi 我的 Android项目中有一个这样的代码:
public boolean isLoadInProgress(boolean privateLoad,boolean publicLoad) {    if (privateLoad && privateLoadInProgress) {        return true;    }    if (publicLoad && publicLoadInProgress) {        return true;    }    return false;}

我在第二个if语句中得到一个lint警告:’if’语句可以被简化.这显然是因为我也可以写:

return publicLoad && publicLoadInProgress;

但是,我想以这种方式保持可读性.我知道有一些内联注释注释来关闭那个地方的lint警告,但是我在Android Lint documentation中找不到它.你能告诉我这个注释是什么吗?

解决方法 禁用警告的简单代码注释是:
//noinspection SimplifiableIfStatement

在if语句之上,应该只在那个地方关闭警告.

在这个例子中,这将是:

public boolean isLoadInProgress(boolean privateLoad,boolean publicLoad) {    if (privateLoad && privateLoadInProgress) {        return true;    }    //noinspection SimplifiableIfStatement    if (publicLoad && publicLoadInProgress) {        return true;    }    return false;}
总结

以上是内存溢出为你收集整理的Android Studio:为if语句抑制lint警告全部内容,希望文章能够帮你解决Android Studio:为if语句抑制lint警告所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1132972.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存