您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }