摘要: 回顾包装类的装箱和拆箱 public class IntegerTest{ public static void main(String[]args){ Integer i=new Integer(4);//手动装箱 调用构造方法 Integer a=5;//自动装箱 自动调用valueOf方法 i 阅读全文
posted @ 2022-11-15 12:54 一往而深, 阅读(130) 评论(0) 推荐(0) 编辑