11 2023 档案

摘要:1.定义两个Integer变量,如下图所示 2.当使用Integer创建变量时,底层使用valueOf方法将int数据进行自动装箱,底层代码如下 1 public static Integer valueOf(int i) { 2 if (i >= IntegerCache.low && i <= 阅读全文
posted @ 2023-11-16 10:26 miku音未来 阅读(122) 评论(0) 推荐(0)