今日は、1 次元配列と 2 次元配列の静的初期化と動的初期化を含む、Java の配列について説明します。興味のある方は一緒に見てください。
今日は配列について話していきます。 Javaでは、1次元配列と2次元配列の静的初期化と動的初期化が含まれます
配列の概要:
配列は、同じ型の複数のデータの組み合わせとみなすことができ、統合的に管理されます。これらのデータのうち、
配列変数は参照データ型に属し、配列はオブジェクトとみなすこともでき、配列内の各要素はオブジェクトのメンバー変数と同等です。
配列内の要素は任意のデータ型にすることができます。基本データ型と参照データ型を含む;
一次元配列の宣言:
宣言方法: 例: int a [ ] = new int [3];
int a [ ] = new int [3];
Java语言中 声明是不能指定其长度[数组中元素的个数];
非法声明; int a [5];
int a [5];
配列オブジェクトの作成:
public class Test {
public static void main (String args[ ] ) {
int [ ] s;
s = new int [5];
for(int i = 0; i < 5; i ++) {
s[i] = 2 * i + 1;
}
}
}
動的初期化:
public class Test {
public static void main (String args [ ] ) {
int a [ ];
a = new int [3];
//int a [ ] = {1,2,3};
Date days [ ];
days = new Date [3];
days [0] = new Date(1,4,20040);
days [1] = new Date(2,4,20040);
days [2] = new Date(3,4,20040);
}
}
class Date {
int year,month,day;
Date (int y,int m,int d) {
year = y; month = m; day = d;
}
}
public class Test {
public static void mian (String args [ ] ) {
int a[ ] = new int [ ] {3,9,8};
Date days[ ] = {
new Date(1,4,2004),
new Date(2,4,2004),
new Date(3,4,2004)
};
}
}
class Date {
int year,month,day;
Date(int y,int m,int d) {
year = y; month = m;day = d;
}
}
2-次元配列は要素の配列とみなすことができます。例:
int a [ ][ ] = {{1,2},{3,4,5,6},{7,8,9}};
静的初期化:
int intA [ ] [ ] = {{1,2},{2,3},{3,4,5}}; int intB [ 3] [ 2] = {{1,2},{2,4},{4,5}}; 非法
以上がJava で 1 次元および 2 次元配列の静的および動的初期化を実装するメソッドの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。