変数

値を保存しておくメモリに名前をつけたもの。型宣言と変数名を記述。
class クラス名 {
int a;
}

定数(static final)
変数を下記に様に記述し、変更不可能な定数とする。定数は通常大文字で表記。
class Math {
public static final double PI = 3.14159265358979323846;
}

自分自身(this)
クラスメソッドの中で自分自身を示す特別な変数名。下記の例ではPersonクラスのインスタンス自身を示す。
class Person {
String name;
int age;
Person(String name, int age) {
this.name = name;
this.age = age;
}
}

配列
例)一次元配列
class Test {
public static void main(String[] args) {
int[] xx = new int[3];
xx[0] = 100;
xx[1] = 200;
xx[2] = 300;
}
}

int[] xx = { 100, 200, 300 };も可

配列の個数は length で参照。
int n = xx.length;

例)二次元配列
int[][] xx = new int[3][5];
String[][] ss = {
{ “Sun”, “Sunday” },
{ “Mon”, “Monday” }
};

オブジェクトの配列を生成するには、配列生成後、それぞれの要素も個別に生成する必要がある。
ClassA[] xx = new ClassA[3];
xx[0] = new ClassA();
xx[1] = new ClassA();
xx[2] = new ClassA();

カテゴリー: Java タグ: , , , , , , パーマリンク