<legend id='ESH8D'><style id='ESH8D'><dir id='ESH8D'><q id='ESH8D'></q></dir></style></legend>
        <bdo id='ESH8D'></bdo><ul id='ESH8D'></ul>
      <tfoot id='ESH8D'></tfoot>

    1. <small id='ESH8D'></small><noframes id='ESH8D'>

      <i id='ESH8D'><tr id='ESH8D'><dt id='ESH8D'><q id='ESH8D'><span id='ESH8D'><b id='ESH8D'><form id='ESH8D'><ins id='ESH8D'></ins><ul id='ESH8D'></ul><sub id='ESH8D'></sub></form><legend id='ESH8D'></legend><bdo id='ESH8D'><pre id='ESH8D'><center id='ESH8D'></center></pre></bdo></b><th id='ESH8D'></th></span></q></dt></tr></i><div id='ESH8D'><tfoot id='ESH8D'></tfoot><dl id='ESH8D'><fieldset id='ESH8D'></fieldset></dl></div>

      声纳对规则的误报:不应取消引用空指针

      时间:2024-05-09
        <tbody id='aDb6p'></tbody>

        <i id='aDb6p'><tr id='aDb6p'><dt id='aDb6p'><q id='aDb6p'><span id='aDb6p'><b id='aDb6p'><form id='aDb6p'><ins id='aDb6p'></ins><ul id='aDb6p'></ul><sub id='aDb6p'></sub></form><legend id='aDb6p'></legend><bdo id='aDb6p'><pre id='aDb6p'><center id='aDb6p'></center></pre></bdo></b><th id='aDb6p'></th></span></q></dt></tr></i><div id='aDb6p'><tfoot id='aDb6p'></tfoot><dl id='aDb6p'><fieldset id='aDb6p'></fieldset></dl></div>
        <tfoot id='aDb6p'></tfoot>
          <bdo id='aDb6p'></bdo><ul id='aDb6p'></ul>

          1. <small id='aDb6p'></small><noframes id='aDb6p'>

            <legend id='aDb6p'><style id='aDb6p'><dir id='aDb6p'><q id='aDb6p'></q></dir></style></legend>
                本文介绍了声纳对规则的误报:不应取消引用空指针的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                我有一个关于这个电话的声纳警报 minRating.getRatgCaam()

                I have a sonar alert on this call minRating.getRatgCaam()

                警报与声纳规则有关:不应取消引用空指针.

                例如:

                AgencyRating minRating = null;
                .......
                if (!getRatingUtilities().isNR(minRating)) {
                    return minRating.getRatgCaam(); //Sonar: Null pointers should not be dereferenced
                }
                

                方法 isNR(minRating) 是一个辅助方法,用于验证对象 minRating 是否为空

                The method isNR(minRating) is a helper method that validate among other things, if the object minRating is null

                public boolean isNR(AgencyRating rating) {
                    return rating == null || isNR(rating.getRatgCaam());
                }
                

                当我按照声纳的建议添加非空验证时.声纳没问题.

                When I added the not null validation as sonar suggest. Sonar is ok.

                if (minRating !=null  && !getRatingUtilities().isNR(minRating)) {
                    return minRating.getRatgCaam(); // no more alert
                }
                

                Sonar 无法确定辅助方法是否进行了 null 验证.我不需要再次进行此验证.

                Sonar can't determine that the helper method did the null validation. I don't need to do this validation again.

                我的情况是误报吗?

                推荐答案

                这确实是一个误报,因为在撰写本文时,sonarqube java 分析器(撰写本文时版本为 4.2.1)不支持跨过程分析因此它无法确定确实,要使条件为真,minRating 的值必须为非空.

                This is indeed a false positive because, at time of writing, the sonarqube java analyzer (version 4.2.1 at time of writing) does not support cross procedural analysis and so it is not able to determine that indeed, for the condition to be true, the value of minRating has to be non null.

                这是我们目前正在大力开发的一项功能,以便能够关闭此类误报.

                This is a feature that we are currently heavily working on to be able to switch off such kind of false positives.

                这篇关于声纳对规则的误报:不应取消引用空指针的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                上一篇:SonarQube 不显示通过 Gradle 完全覆盖的类的每个文件的详细报告 下一篇:为什么 sonar:sonar 之前需要 mvn install ?

                相关文章

                <i id='1CoKu'><tr id='1CoKu'><dt id='1CoKu'><q id='1CoKu'><span id='1CoKu'><b id='1CoKu'><form id='1CoKu'><ins id='1CoKu'></ins><ul id='1CoKu'></ul><sub id='1CoKu'></sub></form><legend id='1CoKu'></legend><bdo id='1CoKu'><pre id='1CoKu'><center id='1CoKu'></center></pre></bdo></b><th id='1CoKu'></th></span></q></dt></tr></i><div id='1CoKu'><tfoot id='1CoKu'></tfoot><dl id='1CoKu'><fieldset id='1CoKu'></fieldset></dl></div>
              • <tfoot id='1CoKu'></tfoot>

                <legend id='1CoKu'><style id='1CoKu'><dir id='1CoKu'><q id='1CoKu'></q></dir></style></legend>

                1. <small id='1CoKu'></small><noframes id='1CoKu'>

                    • <bdo id='1CoKu'></bdo><ul id='1CoKu'></ul>