double类型转换为int类型四舍五入工具类

Posted javahr

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了double类型转换为int类型四舍五入工具类相关的知识,希望对你有一定的参考价值。

package com.qiyuan.util;

import java.math.BigDecimal;
import java.text.DecimalFormat;

public class GetInt {
    
    /**
     * (1)四舍五入把double转化int整型,0.5进一,小于0.5不进一
     * @param number
     * @return
     */
    public static int getInt(double number){
        BigDecimal bd=new BigDecimal(number).setScale(0, BigDecimal.ROUND_HALF_UP);
        return Integer.parseInt(bd.toString()); 
    } 
    
    
    /**
     * (2)四舍五入把double转化为int类型整数,0.5也舍去,0.51进一
     * @param dou
     * @return
     */
    public static int DoubleFormatInt(Double dou){
        DecimalFormat df = new DecimalFormat("######0"); //四色五入转换成整数
        return Integer.parseInt(df.format(dou));
    }
    
    
    /**
     * (3)去掉小数凑整:不管小数是多少,都进一
     * @param number
     * @return
     */
    public static int ceilInt(double number){
        return (int) Math.ceil(number);
    }
    
    
    /**
     * 测试
     * @param args
     */
    public static void main(String[] args) {
        System.out.println("getInt============="+getInt(20.5));
        System.out.println("DoubleFormatInt=========="+DoubleFormatInt(20.5));
        System.out.println("ceilInt================="+ceilInt(20.01));
    }

}

 

以上是关于double类型转换为int类型四舍五入工具类的主要内容,如果未能解决你的问题,请参考以下文章

请教c#中double类型转化为long类型的方法, 以及对double四舍五入的方法

C++中double float 这之类的类型转换为int 是四舍五入还是直接舍去小数部分 进一?

java中将一个double类型的数强制转换为long 型是四舍五入吗?

java中将一个double类型的数强制转换为long 型是四舍五入吗?

double 类型转化为Integer类型 ---DecimalFormat

C-1 简单数据类型转换, scanf缓冲区, 逗号表达式