1.包装类 基本数据类型包装成对象,使基本数据类型的功能更加强大, 基本数据类型 包装类 byte Byte short Short int Integer long Long float Float double Double char Character boolean Boolean 2.装箱操作:将基本数据类型转换成对应的包装类 -1-eg:int a = 5; Integer num = new Integer( num );//传参传num或者a都行 OR Integer num =…