java中的四捨五入——幾種四捨五入的寫法

// 方式一:BigDecimal方式orm

double f = 3.1315;ci

BigDecimal b = new BigDecimal(字符串

new Double(f).toStringform

);方法

double f1 = b.setScale(3, BigDecimal.ROUND_HALF_UP).doubleValue();im

注意:這裏必定不要直接使用new BigDecimal(double)的構造方法, 而要使用new BigDecimal(new Double(1.1315).toString())的方式,否則會出現精確問題static

// 方式二:DecimalFormat方式di

//DecimalFormat默認採用了RoundingMode.HALF_EVEN這種類型,並且format以後的結果是一個字符串類型String字符

DecimalFormat df = new DecimalFormat("#.000");new

System.out.println(df.format(new BigDecimal(1.0145)));//1.014

System.out.println(df.format(new BigDecimal(1.1315)));//1.132

// 方式三:

double d = 3.1415926;

String result = String.format("%.2f", d);

// %.2f %. 表示 小數點前任意位數 2 表示兩位小數 格式後的結果爲f 表示浮點型。

//方法四:傳統的Math.round四捨五入,改成支持指定精確位數的寫法

Math.round(5.2644555 * 100) * 0.01d;

private static double myRound(double number,int index){

      double result = 0;

      double temp = Math.pow(10, index);

      result = Math.round(number*temp)/temp;

      return result;

相關文章
相關標籤/搜索