Java是非纯面向对象编程语言,基本数据类型非面向对象,所以需要将基本数据类型转化为对象。
包装类位于java.lang包
package com.alexanderli95.wrappedClass;
public class test01 {
public static void main(String[] args){
Integer i=new Integer(1000);
System.out.println(i.MAX_VALUE); //获取范围内最大的数
System.out.println(Integer.toHexString(i)); //转换为16进制的数字
Integer i2=Integer.parseInt("234"); //字符串转数字
//或
Integer i3=new Integer("1234");
System.out.println(i.intValue()); //将对象转为int型数字
}
}