包装类的实例化
所有的包装类都是不可变的
实例化方法:
构造方法
除了Character类,其他包
Integer(int x)
Integer(String x)
NumberFormatException异常
对于Boolean构造方法的参数不区分
大小写
装类都是提供了两种构造方法
静态方法:valueOf()方法
Integer i=Integet.valueOf(200);
Integer i=Integet.valueOf(200,8);
8表示进制
构造方法与valueOf()区别
new关键字总是会创建一个新对象
valueOf()方法会缓存在-128到127之
间的整数型数值(byte,short,int,long
)
所有的包装类都是不可变的
实例化方法:
构造方法
除了Character类,其他包
Integer(int x)
Integer(String x)
NumberFormatException异常
对于Boolean构造方法的参数不区分
大小写
装类都是提供了两种构造方法
静态方法:valueOf()方法
Integer i=Integet.valueOf(200);
Integer i=Integet.valueOf(200,8);
8表示进制
构造方法与valueOf()区别
new关键字总是会创建一个新对象
valueOf()方法会缓存在-128到127之
间的整数型数值(byte,short,int,long
)