RICH-ATONE

2021年4月15日 #

Java数组遍历的几种方式

摘要: 数组遍历方式参考: 方法一:for循环遍历 public static void main(String[] args) { int Arr[][]={{1,2,3},{4,5,6}}; for (int i = 0; i < Arr.length; i++) { for (int j = 0; j 阅读全文

posted @ 2021-04-15 14:59 RICH-ATONE 阅读(3801) 评论(0) 推荐(0) 编辑

导航