Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

NamedAspectWithSimpleMainMethodPreview1.aj 388B

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 aspect NamedAspectWithSimpleMainMethodPreview1 {
  8. void main() {
  9. System.out.println("Hello world!");
  10. }
  11. }