Loading

摘要: ![image](https://img2020.cnblogs.com/blog/2256543/202201/2256543-20220114105848203-2025286134.png) 阅读全文
posted @ 2022-01-14 10:59 Cn_FallTime 阅读(8) 评论(0) 推荐(0) 编辑
摘要: ##Java创建数组的方法大致有三种 ###一、声明并赋值 int[] arr = {1,2,4, …}; ###二、声明数组名开辟空间并且赋值 int[] arr; arr = new int[]{1,2,3, …}; ###三、声明数组时指定元素个数然后赋值 int[] arr1= new in 阅读全文
posted @ 2022-01-14 10:31 Cn_FallTime 阅读(25) 评论(0) 推荐(0) 编辑