Java的基本数据类型包括byte、int、short、long、float、double、和char,同时也提供了与基本数据类型相关的类,实现了对基本数据类型的封装这些类在java.lang包中国,分别是Byte、Integer、Short、Long、Float、Double和Character
以下是Integer类的详解
/**
* 测试包装类
* Integer类的使用。其他包装类用法类似
*/
public class TestWrappedClass {
public static void main(String[] args){
//基本数据类型转换成包装类对象
Integer a=new Integer(3);
Integer b=Integer.valueOf(30);
//把包装类转换成基本数据类型
int c=b.intValue();
double d=b.doubleValue();
//把字符串转成包装类对象
Integer e=new Integer("99999");
Integer f=Integer.valueOf("88888");
//把包装类对象转换成字符串
String str=f.toString();
//常见的常量
System.out.println("int类型最大的整数:"+Integer.MAX_VALUE);
}
}