gpt4 book ai didi

java - IntelliJ - 等于之前不必要的 'null' 检查

转载 作者:行者123 更新时间:2023-12-01 16:46:22 26 4
gpt4 key购买 nike

突然给我关于这样的代码的警告/提示:

if (header != null && header.equals(PROXY_REQUEST_VALUE)) {
// ...
}

提示说:

Unnecessary 'null' check before equals()

小灯解决方案将代码更改为

if (PROXY_REQUEST_VALUE.equals(header) {
// ...
}

我不喜欢Yoda conditions 。如何禁用该“功能”?

<小时/>

版本是:Ultimate 2017.1.6

最佳答案

在 IntelliJ 首选项中,编辑器 > 检查。您可以使用搜索字段更轻松地找到所需的检查。

enter image description here

关于java - IntelliJ - 等于之前不必要的 'null' 检查,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49791859/

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