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.
メインメソッドなしでJava7でプログラムを作成できますか.Java 6では、メインなしでプログラムを作成できます
class WithoutMain { static { System.out.println("Hello, World!"); System.exit(0); } }
しかし、この上位プログラムは jdk7 では動作せず、jdk6 では正常に動作しません。jdk7 でそれを行う方法はありますか?