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

pr107059_2.aj 257B

1234567891011121314
  1. public aspect pr107059_2 {
  2. before() : target(@Foo *) { // not allowed type pattern in target of course!
  3. System.out.println("hi");
  4. }
  5. void bar(Object o) {
  6. o.toString(); // generates o hasAnnotation(Foo.class) test
  7. }
  8. }
  9. @interface Foo {}