Java常用型別(Integer,BigDecimal)定義、轉換及比較
(一)Integer型別
1).定義
Integer a=new Integer(int value); Integer a=new Integer(String value); |
2).轉換
i.定義中就可以將int型和String型的轉換為Integer型
ii. String型別轉換為Integer型
Integer.valueOf("");
Integer.getInteger("");
iii.String、Integer型別轉換為int型
Integer.parseInt("");
Integer a;
a.intValue();
iv.上面定義的Integer a轉換為float, double, long
a.floatValue();
a.doubleValue();
a.longValue();
v.Integer a轉換為String(其它的型別轉換為String都可通用以下方法)
toString();
String.valueOf(a);
3).比較(比較的數Integer a)
i. Int num=a.compareTo(Integer anotherInteger);
如果該 Integer 等於 Integer 引數,則返回 0 值;如果該 Integer 在數字上小於 Integer 引數,則返回小於 0 的值;如果 Integer 在數字上大於 Integer 引數,則返回大於 0 的值(有符號的比較)。
ii.轉換為int型再比較:
a.intValue()與b.intValue比較大小;
(二)BigDecimal
1). 定義
BigDecimal a=new BigDecimal(String; val) BigDecimal a=new BigDecimal(double val); |
2).轉換
i.定義中就可以將String型和double 型的轉換為BigDecimal型
ii.Int,float, double, long轉換為BigDecimal
a.floatValue();
a.doubleValue();
a.longValue();
a.intValue();
iii. BigDecimal a轉換為String(其它的型別轉換為String都通用以下方法)
toString();
String.valueOf(a);
3).比較(比較的數BigDecimal a)
Int num=a.compareTo(BigDecimalanotherBigDecimal);
當此BigDecimal在數字上小於、等於或大於 val 時,返回 -1、0 或 1。
BigDecimal取其中最大、最小值、絕對值、相反數:
a.max (b) //比較取最大值
a.min(b) //比較取最小值
a.abs()//取最絕對值
a.negate()//取相反數
4). 計算
加: a.add(b);
減: a.subtract(b);
乘: a.multiply(b);
除: a.divide(b,2);//2為精度取值
(三)int 、long、double、 float的取絕對值和同型別間比較大小都可用以下Math方法:
Math.max(a,b);//比較取最大值
Math.min(a,b);//比較取最小值
Math.abs(a); //取最絕對值