You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IdHelloWorld.txt 985B

123456789101112131415161718192021
  1. public class HelloWorld extends java.lang.Object:
  2. public void <init>():
  3. ALOAD_0 // HelloWorld this (line 5)
  4. INVOKESPECIAL java.lang.Object.<init> ()V
  5. constructor-execution(void HelloWorld.<init>())
  6. | RETURN
  7. constructor-execution(void HelloWorld.<init>())
  8. end public void <init>()
  9. public static void main(String[]):
  10. method-execution(void HelloWorld.main(java.lang.String[]))
  11. | GETSTATIC java.lang.System.out Ljava/io/PrintStream; (line 8)
  12. | LDC "hello world" (line 9)
  13. | method-call(void java.io.PrintStream.println(java.lang.String))
  14. | | INVOKEVIRTUAL java.io.PrintStream.println (Ljava/lang/String;)V
  15. | method-call(void java.io.PrintStream.println(java.lang.String))
  16. | RETURN (line 11)
  17. method-execution(void HelloWorld.main(java.lang.String[]))
  18. end public static void main(String[])
  19. end public class HelloWorld