int x = 0; System.out.println(x); // 宣言と同時に初期化 int y; y = 0; System.out.println(y); // 宣言→初期化でもOK int z; System.out.println(z); // エラー: 初期化されていない変数を使用 ...
Some results have been hidden because they may be inaccessible to you
Show inaccessible results