web-dev-qa-db-fra.com

Initialisation d'un tableau multidimensionnel dans Java

Quelle est la bonne façon de déclarer un tableau multidimensionnel et de lui attribuer des valeurs?

C'est ce que j'ai

int x = 5;
int y = 5;

String[][] myStringArray = new String [x][y];

myStringArray[0][x] = "a string";
myStringArray[0][y] = "another string";
76
burntsugar

Essayez de remplacer les lignes appropriées par:

myStringArray[0][x-1] = "a string";
myStringArray[0][y-1] = "another string";

Votre code est incorrect car les sous-tableaux ont une longueur de y et l'indexation commence à 0. Le réglage sur myStringArray[0][y] ou myStringArray[0][x] échouera car les index x et y sont hors limites.

String[][] myStringArray = new String [x][y]; est la manière correcte d'initialiser un tableau multidimensionnel rectangulaire. Si vous voulez qu'il soit irrégulier (chaque sous-tableau a potentiellement une longueur différente), vous pouvez utiliser un code similaire à cette réponse . Notez cependant que l'affirmation de John selon laquelle vous devez créer les sous-tableaux manuellement est incorrecte dans le cas où vous souhaitez un tableau multidimensionnel parfaitement rectangulaire.

61
jameshales

Java n'a pas de "vrais" tableaux multidimensionnels.

Par exemple, arr[i][j][k] est équivalent à ((arr[i])[j])[k]. En d'autres termes, arr est simplement n tableau, de tableaux, de tableaux.

Donc, si vous savez comment fonctionnent les tableaux, vous savez comment fonctionnent les tableaux multidimensionnels!


Déclaration:

int[][][] threeDimArr = new int[4][5][6];

ou, avec initialisation:

int[][][] threeDimArr = { { { 1, 2 }, { 3, 4 } }, { { 5, 6 }, { 7, 8 } } };

Accès:

int x = threeDimArr[1][0][1];

ou

int[][] row = threeDimArr[1];

Représentation de la chaîne:

Arrays.deepToString(threeDimArr);

les rendements

"[[[1, 2], [3, 4]], [[5, 6], [7, 8]]]"
99
aioobe

Vous pouvez également utiliser la construction suivante:

String[][] myStringArray = new String [][] { { "X0", "Y0"},
                                             { "X1", "Y1"},
                                             { "X2", "Y2"},
                                             { "X3", "Y3"},
                                             { "X4", "Y4"} };
59
A_M

Vous pouvez déclarer des tableaux multidimensionnels comme:

// 4 x 5 String arrays, all Strings are null
// [0] -> [null,null,null,null,null]
// [1] -> [null,null,null,null,null]
// [2] -> [null,null,null,null,null]
// [3] -> [null,null,null,null,null]

String[][] sa1 = new String[4][5];
for(int i = 0; i < sa1.length; i++) {           // sa1.length == 4
    for (int j = 0; j < sa1[i].length; j++) {     //sa1[i].length == 5
        sa1[i][j] = "new String value";
    }
}


// 5 x 0  All String arrays are null
// [null]
// [null]
// [null]
// [null]
// [null]
String[][] sa2 = new String[5][];
for(int i = 0; i < sa2.length; i++) {
    String[] anon = new String[ /* your number here */];
    // or String[] anon = new String[]{"I'm", "a", "new", "array"};
    sa2[i] = anon;
}

// [0] -> ["I'm","in","the", "0th", "array"]
// [1] -> ["I'm", "in", "another"]
String[][] sa3 = new String[][]{ {"I'm","in","the", "0th", "array"},{"I'm", "in", "another"}};
13
Clint

Tableau multidimensionnel en Java

Renvoyer un tableau multidimensionnel

Java ne prend pas véritablement supporte les tableaux multidimensionnels. En Java, un tableau à deux dimensions est simplement un tableau de tableaux, un tableau à trois dimensions est un tableau de tableaux de tableaux, un tableau à quatre dimensions est un tableau de tableaux de tableaux de tableaux, etc.

Nous pouvons définir un tableau à deux dimensions comme:

  1. int[ ] num[ ] = {{1,2}, {1,2}, {1,2}, {1,2}}
  2. int[ ][ ] num = new int[4][2]

    num[0][0] = 1;
    num[0][1] = 2;
    num[1][0] = 1;
    num[1][1] = 2;
    num[2][0] = 1;
    num[2][1] = 2;
    num[3][0] = 1;
    num[3][1] = 2;
    

    Si vous n'allouez pas, disons num[2][1], il n'est pas initialisé puis 0, c'est-à-dire automatiquement num[2][1] = 0;

  3. Ci-dessous, num1.length vous donne des lignes.

  4. Alors que num1[0].length vous donne le nombre d’éléments liés à num1[0]. Ici, num1[0] ne contient que des tableaux num1[0][0] et num[0][1].
  5. Ici, nous avons utilisé une boucle for qui nous aide à calculer num1[i].length. Ici, i est incrémenté par une boucle.

    class array
    {
        static int[][] add(int[][] num1,int[][] num2)
        {
            int[][] temp = new int[num1.length][num1[0].length];
            for(int i = 0; i<temp.length; i++)
            {
                for(int j = 0; j<temp[i].length; j++)
                {
                    temp[i][j] = num1[i][j]+num2[i][j];
                }
            }
            return temp;
        }
    
        public static void main(String args[])
        {
            /* We can define a two-dimensional array as
                 1.  int[] num[] = {{1,2},{1,2},{1,2},{1,2}}
                 2.  int[][] num = new int[4][2]
                     num[0][0] = 1;
                     num[0][1] = 2;
                     num[1][0] = 1;
                     num[1][1] = 2;
                     num[2][0] = 1;
                     num[2][1] = 2;
                     num[3][0] = 1;
                     num[3][1] = 2;
    
                     If you don't allocate let's say num[2][1] is
                     not initialized, and then it is automatically
                     allocated 0, that is, automatically num[2][1] = 0;
                  3. Below num1.length gives you rows
                  4. While num1[0].length gives you number of elements
                     related to num1[0]. Here num1[0] has related arrays
                     num1[0][0] and num[0][1] only.
                  5. Here we used a 'for' loop which helps us to calculate
                     num1[i].length, and here i is incremented through a loop.
            */
            int num1[][] = {{1,2},{1,2},{1,2},{1,2}};
            int num2[][] = {{1,2},{1,2},{1,2},{1,2}};
    
            int num3[][] = add(num1,num2);
            for(int i = 0; i<num1.length; i++)
            {
                for(int j = 0; j<num1[j].length; j++)
                    System.out.println("num3[" + i + "][" + j + "]=" + num3[i][j]);
            }
        }
    }
    
8
Isabella Engineer

J'ajouterai que si vous voulez lire les dimensions, vous pouvez le faire:

int[][][] a = new int[4][3][2];

System.out.println(a.length);  // 4
System.out.println(a[0].length); // 3
System.out.println(a[0][0].length); //2

Vous pouvez également avoir tableaux déchiquetés , où différentes lignes ont des longueurs différentes, donc a[0].length != a[1].length.

4
Vlad