將程序中的double值精確到小數點後兩位。能夠四捨五入,也能夠直接截斷。html
好比:輸入12345.6789,輸出能夠是12345.68也能夠是12345.67。至因而否須要四捨五入,能夠經過參數來決定(RoundingMode.UP/RoundingMode.DOWN等參數)。git
formatDouble1( ()Math.round(d*100)/100 formatDouble2( BigDecimal bg = BigDecimal(d).setScale(2 String formatDouble3(= nf.setMaximumFractionDigits(2 String formatDouble4(= DecimalFormat("#.00" String formatDouble5( String.format("%.2f" d = 12345.67890