摘要: @目录一、创建数组的四种方式二、详解三、数组存储的弊端 一、创建数组的四种方式 以int数据类型为例 @Test public void testNewArray() { //创建数组 //法一 int[] arr1 = new int[]{1,2,3,4,5}; System.out.printl 阅读全文
posted @ 2024-03-17 18:01 BJRA 阅读(2617) 评论(0) 推荐(0) 编辑