忍者ブログ
情報処理試験など、理系の試験対策、関連知識、日記などです

Java 定数の利用

1.文法

定数は、static final  で宣言する

2.サンプル


interface Const{
  static final int  MAXVALUE = 10 ; 
  static final int MINVALUE= 1 ; 
}
class Main {
  public static void main(String[] args) {
    System.out.println(Const.MAXVALUE);
    System.out.println(Const.MINVALUE);
  }
}

3.実行結果

10
1

と表示されます。







PR