欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Java常用工具类整理之MathUtils

程序员文章站 2024-03-14 14:42:34
...

常用数字转换

/**
* 四舍五入
*/
public static long round(double index){
return Math.round(index);
}

/**
 * 向下取整
 * @param index
 * @return
 */
public static double downInt(double index){
    return Math.floor(index);
}


/**
 * 向上取整
 * @param index
 * @return
 */
public static double upInt(double index){
    return Math.ceil(index);
}

/**
 * 取绝对值
 * @param index
 * @return
 */
public static int abs(int index){
    return Math.abs(index);
}