Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

NamedClassWithSimpleMainMethodPreview1.java 386B

1234567891011
  1. /**
  2. * Example according to <a href="https://openjdk.org/jeps/445">JEP 445</a>
  3. * <p>
  4. * This actually does not require any compiler changes and should be compilable without {@code --enable-preview}.
  5. * It merely serves as a test case for the JVM launcher protocol.
  6. */
  7. public class NamedClassWithSimpleMainMethodPreview1 {
  8. void main() {
  9. System.out.println("Hello world!");
  10. }
  11. }