zoukankan      html  css  js  c++  java
  • java保留小数点两位的4种方法

    1. import java.math.BigDecimal;
    2. import java.text.DecimalFormat;
    3. import java.text.NumberFormat;
    4. public class format {
    5.     double f = 111231.5585;
    6.     public void m1() {
    7.         BigDecimal bg = new BigDecimal(f);
    8.         double f1 = bg.setScale(2, BigDecimal.ROUND_HALF_UP).doubleValue();
    9.         System.out.println(f1);
    10.     }
    11.     /**
    12.      * DecimalFormat转换最简便
    13.      */
    14.     public void m2() {
    15.         DecimalFormat df = new DecimalFormat("#.00");
    16.         System.out.println(df.format(f));
    17.     }
    18.     /**
    19.      * String.format打印最简便
    20.      */
    21.     public void m3() {
    22.         System.out.println(String.format("%.2f", f));
    23.     }
    24.     public void m4() {
    25.         NumberFormat nf = NumberFormat.getNumberInstance();
    26.         nf.setMaximumFractionDigits(2);
    27.         System.out.println(nf.format(f));
    28.     }
    29.     public static void main(String[] args) {
    30.         format f = new format();
    31.         f.m1();
    32.         f.m2();
    33.         f.m3();
    34.         f.m4();
    35.     }
    36. }
  • 相关阅读:
    潜入ICU的四逆汤
    经方医的视角
    黄连解毒汤治疗月经过多
    柳暗花明又一方
    PHP 相关性系数计算
    备忘-VSCODE、apache配置
    c# 基于文件系统实现的队列处理类
    notepad++ 快速运行PHP代码
    dat.gui stats.js 通用参数配置及图像统计工具
    AutoHotkey 自动化脚本工具实例
  • 原文地址:https://www.cnblogs.com/yw09041432/p/5842204.html
Copyright © 2011-2022 走看看