Sonar bugs

new BigDecimal(Stringvalue) 或 BigDecimal.valueof( double value)
http://192.168.8.169:9000/project/issues?id=com.yangshan.eship%3Ayangshan-parent&open=AWdzK2MZP3Y1Ty5B_sj2&resolved=false&types=BUG
java Formatter 为什么要close
http://192.168.8.169:9000/project/issues?id=com.yangshan.eship%3Ayangshan-parent&open=AWcbkMCphkGIDtAVvLsv&resolved=false&types=BUG


参照: https://blog.csdn.net/quinnnorris/article/details/54614446
  }catch (InterruptedException e) {
    LOGGER.log(Level.WARN, "Interrupted!", e);
    // Restore interrupted state...
    Thread.currentThread().interrupt();
  }
long a = 10 * 100 * 1000 * 1000 * 1000L;
// 1000000000000

long a = 10 * 100 * 1000 * 1000 * 1000;
// -727379968
@Test
public void testRandom(){
        Random random1 = new Random(1);
        Random random2 = new Random(1);

        for (int i = 0; i < 3; i++) {

            log.debug("random1随机数:{}", random1.nextInt(100));
            log.debug("random2随机数:{}", random2.nextInt(100));
        }
}
// 每次输出都一样
random1随机数:85
random2随机数:85
random1随机数:88
random2随机数:88
random1随机数:47
random2随机数:47

如果想避免出现随机数字相同的情况,则需要注意,无论项目中需要生成多少个随机数字,都只使用一个Random对象即可, 即单例工程模型。

直接使用 org.apache.commons.lang3.RandomUtils
private static final SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd");
线程不安全,所以要使用时new出来

折中使用, DateUtil 绑定到线程上
//Noncompliant Code Example
if (x < 0)
  new IllegalArgumentException("x must be nonnegative");

//Compliant Solution
if (x < 0)
  throw new IllegalArgumentException("x must be nonnegative");
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值