java基础之基础类型的自动装箱
public class JavaBase { public static void main(String[] args) { autoBoxing(); } /** * 装箱就是自动将基本数据类型转换为包装器类型(int-->Integer);调用方法:Integer的 * valueOf(int) 方法 * 拆箱就是自动将包装器类型转换为基本数据类型(Integer-->int)。调用方法:Integer的