double转Int四舍五入
Posted liangguanxun
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了double转Int四舍五入相关的知识,希望对你有一定的参考价值。
/**
* double转Int四舍五入
*
* @param number
* @return
*/
private static int getInt(double number) {
BigDecimal bd = new BigDecimal(number).setScale(0, BigDecimal.ROUND_HALF_UP);
return Integer.parseInt(bd.toString());
}
以上是关于double转Int四舍五入的主要内容,如果未能解决你的问题,请参考以下文章