JavaA2Z

KAB-studio > プログラミング > JavaA2Z > 多次元配列とは

多次元配列

日本語 多次元配列
英語 multidimensional array
ふりがな たじげんはいれつ
フリガナ タジゲンハイレツ

解説

配列の中に配列が入っており、さらにその中に配列が入っている、そんな配列
二次元配列のさらに次元数が多い配列を指す。
基本的には二次元配列と同じく「配列の中に配列が入っている」のが繰り返されているだけである。
アクセス方法も「[]」をそのまま増やしていけば同様に扱える。
ただ、実際にはややこしいこと極まりなく、文法的にも難しい面があるため、素直にArrayListを使用した方がいいとも言える。

参考サイト

  • (参考サイトはありません)

(KAB-studioからのおしらせです)

サンプルプログラム(とか)サンプルを別ウィンドウで表示サンプルをクリップボードへコピー(WindowsでIEの場合のみ)

// Sample.java
public class Sample
{
    public static void main( String[] args )
    {
        // int型の三次元配列を作ります。
        int[][][] intsOfIntsOfInts 
            = new int[][][]
            { 
                new int[][]
                {
                      new int[]{ 10, 20, 30 }
                    , new int[]{ 100, 200, 300 } 
                },
                new int[][]
                {
                      new int[]{ 1000, 2000, 3000 }
                    , new int[]{ 10000, 20000, 30000 } 
                }
            };
        // このように「『〈intの配列〉を入れる配列』を入れる配列」
        // を作っています。

        // 左側の添え字が「『〈intの配列〉を入れる配列』を入れる配列」、
        // 中央の添え字が『〈intの配列〉を入れる配列』、
        // 右側の添え字が〈intの配列〉になります。
        System.out.println( intsOfIntsOfInts[0][0][0] );
        System.out.println( intsOfIntsOfInts[0][0][1] );
        System.out.println( intsOfIntsOfInts[0][0][2] );
        System.out.println( intsOfIntsOfInts[0][1][0] );
        System.out.println( intsOfIntsOfInts[0][1][1] );
        System.out.println( intsOfIntsOfInts[0][1][2] );
        System.out.println( intsOfIntsOfInts[1][0][0] );
        System.out.println( intsOfIntsOfInts[1][0][1] );
        System.out.println( intsOfIntsOfInts[1][0][2] );
        System.out.println( intsOfIntsOfInts[1][1][0] );
        System.out.println( intsOfIntsOfInts[1][1][1] );
        System.out.println( intsOfIntsOfInts[1][1][2] );
        // 10
        // 20
        // 30
        // 100
        // 200
        // 300
        // 1000
        // 2000
        // 3000
        // 10000
        // 20000
        // 30000

        // 『〈intの配列〉を入れる配列』だけ取り出すこともできます。
        int[][] intsOfInts = intsOfIntsOfInts[0];
        System.out.println( intsOfInts[0][0] );
        System.out.println( intsOfInts[0][1] );
        System.out.println( intsOfInts[0][2] );
        System.out.println( intsOfInts[1][0] );
        System.out.println( intsOfInts[1][1] );
        System.out.println( intsOfInts[1][2] );
        // 10
        // 20
        // 30
        // 100
        // 200
        // 300
    }
}
// Sample.java
public class Sample
{
    public static void main( String[] args )
    {
        // int型の三次元配列を作ります。
        int[][][] intsOfIntsOfInts 
            = new int[][][]
            { 
                new int[][]
                {
                      new int[]{ 10, 20, 30 }
                    , new int[]{ 100, 200, 300 } 
                },
                new int[][]
                {
                      new int[]{ 1000, 2000, 3000 }
                    , new int[]{ 10000, 20000, 30000 } 
                }
            };
        // このように「『〈intの配列〉を入れる配列』を入れる配列」
        // を作っています。

        // 左側の添え字が「『〈intの配列〉を入れる配列』を入れる配列」、
        // 中央の添え字が『〈intの配列〉を入れる配列』、
        // 右側の添え字が〈intの配列〉になります。
        System.out.println( intsOfIntsOfInts[0][0][0] );
        System.out.println( intsOfIntsOfInts[0][0][1] );
        System.out.println( intsOfIntsOfInts[0][0][2] );
        System.out.println( intsOfIntsOfInts[0][1][0] );
        System.out.println( intsOfIntsOfInts[0][1][1] );
        System.out.println( intsOfIntsOfInts[0][1][2] );
        System.out.println( intsOfIntsOfInts[1][0][0] );
        System.out.println( intsOfIntsOfInts[1][0][1] );
        System.out.println( intsOfIntsOfInts[1][0][2] );
        System.out.println( intsOfIntsOfInts[1][1][0] );
        System.out.println( intsOfIntsOfInts[1][1][1] );
        System.out.println( intsOfIntsOfInts[1][1][2] );
        // 10
        // 20
        // 30
        // 100
        // 200
        // 300
        // 1000
        // 2000
        // 3000
        // 10000
        // 20000
        // 30000

        // 『〈intの配列〉を入れる配列』だけ取り出すこともできます。
        int[][] intsOfInts = intsOfIntsOfInts[0];
        System.out.println( intsOfInts[0][0] );
        System.out.println( intsOfInts[0][1] );
        System.out.println( intsOfInts[0][2] );
        System.out.println( intsOfInts[1][0] );
        System.out.println( intsOfInts[1][1] );
        System.out.println( intsOfInts[1][2] );
        // 10
        // 20
        // 30
        // 100
        // 200
        // 300
    }
}

この単語を含むページ

「みだし」に含まれているページ

「解説」に含まれているページ

「サンプルプログラムとか」に含まれているページ

はてなブックマーク 詳細を表示 はてなブックマーク ブックマーク数
livedoorクリップ 詳細を表示 livedoorクリップ ブックマーク数
Yahoo!ブックマーク 詳細を表示 users
del.icio.us 登録する RSSに登録
サンプルを別ウィンドウで表示
サンプルをクリップボードへコピー(WindowsでIEの場合のみ)
update:2005/04/22
このページは、Javaプログラミング言語についての用語を網羅した辞書「JavaA2Z」の一ページです。
詳しくは「JavaA2Z」表紙の説明をご覧ください。