JAVA言語 変数の修飾子(static final, this)

TOP > JAVA入門 >  文字列(String)
このエントリーをはてなブックマークに追加

変数の修飾子

変数の修飾子には、public、protected、privatestatic、final、transient、volatile があります。
修飾子 int v ;

定数(static final)

変数を static final で定義することにより、定数(変更できない変数)にする事ができます。
public static final double PI = 3.14159;

自分自身(this)

this は自分自身を示します。
class Test {
    String name;
    int age;
    Test(String name, int score) {
        this.name = name;
        this.score = score;
    }
}