基本类型包装类
Java语言是一个面向对象的语言,但是Java中的基本数据类型却是不面向对象的,这在实际使用时存在很多的不便,为了解决这个不足,在设计类时为每个基本数据类型设计了一个对应的类进行代表,这样八个和基本数据类型对应的类统称为包装类(Wrapper Class),有些地方也翻译为外覆类或数据类型
其中需要注意
int
对应的是Integer
,char
对应的Character
,其他6个都是基本类型首字母大写即可
将字符串转为基本类型
int i = Integer.parseInt("123");
将基本数值转成字符串
// 基本类型直接与""连接
String s1 = 123 + "";
// 调用String的valueOf方法
String s2 = String.valueOf(123);
// 调用包装类中的toString方法
String s3 = Integer.toString(123);
Integer类的构造方法
Integer(String str)
将数值格式的字符串传递到Integer
类的构造方法中,转成基本数据类型,调用非静态方法intValue()
Integer in = new Integer("100");
int i = in.intValue();
system.out.println(i--); // 100,先打印,在--
自动装箱拆箱
自动装箱就是Java自动将原始类型值转换成对应的对象,比如将int
的变量转换成Integer
对象,这个过程叫做装箱,反之将Integer
对象转换成int
类型值,这个过程叫做拆箱。因为这里的装箱和拆箱是自动进行的非人为转换,所以就称作为自动装箱和拆箱
Integer i = 1; // 自动动装箱Integer i = Integer.valueOf(1)
i = i + 2 // 将等号右边的i对象转成基本数值(自动拆箱), i.intValue() + 1;
// 运算完成后,再次装箱,把基本数值转成对象
注意
当数值在byte范围之内时,进行自动装箱,不会新创建对象空间而是使用医来已有的空间
Integer i = new Integer(1);
Integer j = new Integer(1);
System.out.println(i==j); // false 对象地址
System.out.println(i.equals(j)); // true 继承Object重写equals,比较的对象数据
Integer a = 500; //Integer integer=Integer.valueOf(500)
Integer b = 500; //integer=new Integer(500);
System.out.println(a==b); //false
System.out.println(a.equals(b)); //true
//数据在byte(-128~127)范围内,JVM不会从新new对象
Integer aa = 127; // Integer aa = new Integer(127)
Integer bb = 127; // Integer bb = aa;
System.out.println(aa==bb); //true
System.out.println(aa.equals(bb)); //true
System类
在API中System
类介绍的比较简单,我们给出定义,System
中代表程序所在系统,提供了对应的一些系统属性信息,和系统操作
System
类不能手动创建对象,因为构造方法被private
修饰,阻止外界创建对象。System
类中的都是static
方法,类名访问即可。在JDK中,有许多这样的类
-
currentTimeMillis()
获取当前系统时间与1970年01月01日00:00点之间的毫秒差值 -
exit(int status)
用来结束正在运行的Java程序。参数传入一个数字即可。通常传入0记为正常状态,其他为异常状态 -
gc()
用来运行JVM中的垃圾回收器,完成内存中垃圾的清除。 -
getProperty(String key)
用来获取指定键(字符串名称)中所记录的系统属性信息
System类的方法练习
验证for循环打印数字1-9999所需要使用的时间(毫秒)
public static void main(String[] args) {
long start = System.currentTimeMillis();
for (int i=0; i<10000; i++) {
System.out.println(i);
}
long end = System.currentTimeMillis();
System.out.println("共耗时毫秒:" + (end-start) );
}
将src数组中前3个元素,复制到dest数组的前3个位置上
public static void main(String[] args) {
int[] src = new int[]{1,2,3,4,5};
int[] dest = new int[]{6,7,8,9,10};
System.arraycopy( src, 0, dest, 0, 3);
}
// 代码运行后:两个数组中的元素发生了变化
// src数组元素[1,2,3,4,5]
// dest数组元素[1,2,3,9,10]
Math类
Math 类是包含用于执行基本数学运算的方法的数学工具类,如初等指数、对数、平方根和三角函数
Arrays类
此类包含用来操作数组(比如排序和搜索)的各种方法。需要注意,如果指定数组引用为 null,则访问此类中的方法都会抛出空指针异常NullPointerException
BigInteger类
java中long
型为最大整数类型,对于超过long
型的数据如何去表示呢,在Java的世界中,超过long
型的整数已经不能被称为整数了,它们被封装成BigInteger
对象,在BigInteger
类中,实现四则运算都是方法来实现,并不是采用运算符
public static void main(String[] args) {
// 大数据封装为BigInteger对象
BigInteger big1 = new BigInteger("12345678909876543210");
BigInteger big2 = new BigInteger("98765432101234567890");
// add实现加法运算
BigInteger bigAdd = big1.add(big2);
// subtract实现减法运算
BigInteger bigSub = big1.subtract(big2);
// multiply实现乘法运算
BigInteger bigMul = big1.multiply(big2);
// divide实现除法运算
BigInteger bigDiv = big2.divide(big1);
}
BigDecimal类
double
和float
类型在运算中很容易丢失精度,造成数据的不准确性
public static void main(String[] args) {
// add实现加法运算
BigDecimal big1 = new BigDecimal("0.09");
BigDecimal big2 = new BigDecimal("0.01");
BigDecimal bigAdd = big1.add(big2);
// subtract实现减法运算
BigDecimal big3 = new BigDecimal("1.0");
BigDecimal big4 = new BigDecimal("0.32");
BigDecimal bigSub = big3.subtract(big4);
// multiply实现乘法运算
BigDecimal big5 = new BigDecimal("1.105");
BigDecimal big6 = new BigDecimal("100");
BigDecimal bigMul = big5.multiply(big6);
// divide实现除法运算
BigDecimal big7 = new BigDecimal("1.0");
BigDecimal big8 = new BigDecimal("0.3");
BigDecimal bigDiv = big7.divide(big8,3, BigDecimal.ROUND_HALF_UP);
// 对于浮点数据的除法运算,和整数不同,可能出现无限不循环小数,因此需要对所需要的位数进行保留和选择舍入模式