2025年9月24日
摘要: Day08 1.多维数组的打印方式 int[][] arr = new int[4][3];//地址值 System.out.println(arr[0]);//地址值 System.out.println(arr[0][0]);//0 !!!System.out.println(arr);//[[ 阅读全文
posted @ 2025-09-24 17:41 超哥进阶之路 阅读(5) 评论(0) 推荐(0)