/** 定数(値の変更できない変数)を宣言する */ public class Temp { public static void main(String[] args) { final int a = 100; /* 100で初期化 */ a = 200; /* エラー */ } }