Java 如何进行装箱与拆箱
提问人:刘旭39发布时间:2020-11-26
装箱与拆箱
从JDK 1.5版本开始,引人了自动装箱和自动拆箱的概念。装箱是指将基本类型的值转换成包 装类对象,拆箱是指将包装类对象转换成基本类型的值。自动装箱和拆箱在java中很常见,在赋值 或方法调用时都有可能发生。
//装箱与拆箱
public class BoxingAndUnBoxing{
public static void main(String[] args) {
Integer x = new Integer(10);//手动装箱
Integer y = 10;//自动装箱
int m=x.intValue();//手动拆箱
int n=x;//自动拆箱
}
}
继续查找其他问题的答案?
相关视频回答
回复(0)
点击加载更多评论>>