C#中 什么是装箱和拆箱时间:2025-01-17 22:37:38装箱:将值类型包装为引用类型 拆箱:将引用类型转换为值类型 例如 objetct obj = null; obj = ; //装箱 int i = (int) obj; //拆箱