7、基本类型的包装类。 (1)基本类型的数据我们只能使用值,不能做更多的操作。 为了方便我们操作,java就把每种基本类型进行了包装。提供方法供我们使用。 (2)基本类型和包装类的对应关系 byte Byte short Short int Integer long Long float Float double Double char Character boolean Boolean (3)Integer构造方法 A:Integer i = new Integer(int num); B:Integer i = new Integer(String s); 注意:s必须是一个由数字字符组成的字符串。 A:String -- int Integer: public static int parseInt(String s) B:int -- String Integer: public static String toString(int i) String: public static String valueOf(int i) (5)JDK5以后的新特性 A:自动装箱 基本类型--引用类型 B:自动拆箱 引用类型--基本类型 举例: Integer i = 100; i += 200;
|