动态二维数组赋值及for循环遍历和toString遍历
生活随笔
收集整理的這篇文章主要介紹了
动态二维数组赋值及for循环遍历和toString遍历
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
package com.Summer_0421.cn;import java.util.Arrays;/*** @author Summer* 動態二維數組賦值及for循環遍歷和toString遍歷*/
public class Tesrt04 {public static void main(String[] args) {int[][] arr = new int[2][2];arr[0][0] = 100; arr[0][1] = 1; arr[1][0] = 10; arr[1][1] = 1000; for (int i = 0; i < arr.length; i++) {for (int j = 0; j < arr[i].length; j++) {System.out.print(arr[i][j]+" ");}System.out.println();}for (int[] is : arr) {for (int i : is) {System.out.print(i+" ");}System.out.println();}for (int i = 0; i < arr.length; i++) {System.out.println(Arrays.toString(arr[i]));}}
}
?
轉載于:https://www.cnblogs.com/summerdata/p/10745922.html
總結
以上是生活随笔為你收集整理的动态二维数组赋值及for循环遍历和toString遍历的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 购买阿里云服务器地域如何选择?
- 下一篇: Vue 项目实现按钮级别权限管理