Ncss Type Count violation(Ncss 类型计数违规)
问题描述
我不太清楚 PMD 提出的这种违规行为.基本上我有两个问题:
我应该怎么做才能摆脱这种违规行为?
以下语句是什么意思?
<块引用>
该类型的 NCSS 行数为 944 个参数
最小值:类型 NCSS 计数报告阈值:默认为 1500.
PMD 代码大小规则一个>.
NCSS 代表非注释源代码行.具有高 NCSS 计数的方法和/或类(在非常高的级别)太长,并且可能会被拆分.大量的 NCSS 是不好的.
此外,听起来您可能正在使用 Sonar 2.10 或更低版本,如 Sonar Bug 2676 已在 2.11 中修复.
I'm not really clear with this violation raised by PMD. Basically I have 2 questions:
What should I do to get rid of this violation?
What does the following statement mean?
The type has an NCSS line count of 944 Parameters
minimum: The type NCSS count reporting threshold: Default is 1500.
PMD Code size rules.
NCSS stands for Non-Commented Source Code lines. Methods and/or classes that have high NCSS counts are (at a very high level) too long, and can probably be split up. High numbers of NCSS are bad.
Additionally, it sounds like you might be using Sonar version 2.10 or prior, as Sonar Bug 2676 was fixed in 2.11.
这篇关于Ncss 类型计数违规的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Ncss 类型计数违规
基础教程推荐
- Java 实例变量在两个语句中声明和初始化 2022-01-01
- 多个组件的复杂布局 2022-01-01
- 在 Java 中创建日期的正确方法是什么? 2022-01-01
- 验证是否调用了所有 getter 方法 2022-01-01
- 如何在 JFrame 中覆盖 windowsClosing 事件 2022-01-01
- 从 python 访问 JVM 2022-01-01
- Java Swing计时器未清除 2022-01-01
- 如何在 Spring @Value 注解中正确指定默认值? 2022-01-01
- 不推荐使用 Api 注释的描述 2022-01-01
- 大摇大摆的枚举 2022-01-01
