Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
このようなプログラミング、
static { a = 6; }
要素「a」にタイプが必要ないのはなぜですか?
Java では、すべての変数に型が必要です。
どこかで変数aを初期化したと思います
private static int a; static { a = 6; }