一 Math 常用相关用法的学习总结
1.Math.log10(num) 10的多少次方等于num
例如 Math.log10(100)=2;
2 Math.floor(num) 向下取整
例如 Math.floor(8.5)=8;
Math.floor(-8.5)=-9;
3.Math.pow(10, u) 返回10的u次方
例如 Math.pow(10,3)=1000;
4.Math.max(x,y) 返回x 和y中的最大值
例 Math.max(2,3)=3;
5.Math.min(x,y) 返回 x 和y的最小值
例 Math.min(0,1)=0;
Math.abs(x) 返回x的绝对值
例 Math.abs(-10)=10; Math.abs(10)=10; Math.abs(0)=0;
Math.round(x) 相当于加0.5后向下取值
例 Math.round(3.3)=3.0+0.5=3.8; 向下取值为3
Math.round(-10.5)=-10.5+0.5=-10; 向下取值为-10
Math.ceil(x) 向上取整
例 Math.ceil(6.5)=7;
Math.addExact(x,y) x y相加
Math.multiplyExact(x,y) x y相乘
Math.PI =圆周率 3.14159265358979323846
二DecimalFormat 学习总结
DecimalFormat 是 NumberFormat 的一个具体子类,用于格式化十进制数字。
DecimalFormat 包含一个模式 和一组符号
符号含义:
0 一个数字
“# ” (在文章中不显示 因此添加双引号)
一个数字,不包括 0
. 小数的分隔符的占位符
, 分组分隔符的占位符
; 分隔格式。
- 缺省负数前缀。
% 乘以 100 和作为百分比显示
例子:
DecimalFormat df1 = new DecimalFormat("0.0");
DecimalFormat df2 = new DecimalFormat("#.#");
DecimalFormat df3 = new DecimalFormat("000.000");
DecimalFormat df4 = new DecimalFormat("###.###");
System.out.println(df1.format(12.34));
System.out.println(df2.format(12.34));
System.out.println(df3.format(12.34));
System.out.println(df4.format(12.34));
结果:
12.3
12.3
012.340
12.34