java代码规范
不会理财的程序员不是好摄影师
这个作者很懒,什么都没留下…
展开
-
SonarLint代码规范检查提示Cognitive Complexity of methods should not be too high
认知复杂性是衡量方法的控制流程有多难理解的指标。认知复杂度高的方法将难以维持。在规则设置中可以设置以下参数值。在连接模式下,服务器端配置将覆盖本地设置。原创 2022-10-24 17:20:51 · 8018 阅读 · 0 评论 -
Modifiers should be declared in the correct order 修饰符应按正确的顺序声明
不遵循此约定不会产生技术影响,但会降低代码的可读性,因为大多数开发人员都习惯了标准顺序。NoncompliantCodeExample不符合代码示例。修饰符应按正确的顺序声明,这是由于修饰符顺序写反了。CompliantSolution合规解决方案。......原创 2022-07-22 13:17:44 · 1005 阅读 · 0 评论 -
代码规范Sonar报Raw types should not be used
Raw types should not be used Code smell Majorjava:S3740 Generic types shouldn’t be used raw (without type parameters) in variable declarations or return values. Doing so bypasses generic type checking, and defers the catch of unsafe code to runtime.原创 2022-07-11 16:37:20 · 8556 阅读 · 0 评论 -
idea代码规范提示感叹号非运算符不利于快速理解
"!"运算符不利于快速理解。 Inspection info: 避免采用取反逻辑运算符。 说明: 取反逻辑不利于快速理解,并且取反逻辑写法必然存在对应的正向逻辑写法。原创 2022-01-12 10:54:57 · 834 阅读 · 0 评论 -
java中【HashMap】初始化时,尽量指定初始值大小
java中【HashMap】初始化时,尽量指定初始值大小原创 2022-01-11 14:43:33 · 6432 阅读 · 0 评论 -
JAVA idea代码提示接口方法【xxxxxx】必须使用javadoc注释
JAVA idea代码提示接口方法【xxxxxx】必须使用javadoc注释原创 2022-01-06 17:14:45 · 7431 阅读 · 0 评论 -
IDEA提示: 使用了new BigDecimal(double)构造函数 相关问题
IDEA提示: 使用了new BigDecimal(double)构造函数 相关问题原创 2021-12-30 17:53:09 · 1693 阅读 · 0 评论 -
java idea提示Type may be primitive类型可能/可以是原始的
java idea提示Type may be primitive类型可能/可以是原始的原创 2022-01-06 09:43:31 · 13819 阅读 · 0 评论