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.

Target.java 298B

12345678910
  1. import java.lang.annotation.*;
  2. public class Target {
  3. public static void main(String []argv) throws Exception {
  4. Annotation[] annos = Target.class.getDeclaredMethod("main",String[].class).getAnnotations();
  5. for (int i=0;i<annos.length;i++) {
  6. System.out.println(annos[i]);
  7. }
  8. }
  9. }