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

PointcutsInInterfaces.aj 194B

123456789101112131415
  1. public interface PointcutsInInterfaces {
  2. public pointcut foo() : execution(* *(..));
  3. }
  4. class C {
  5. void foo() {}
  6. }
  7. aspect A {
  8. declare warning : PointcutsInInterfaces.foo() : "aha!";
  9. }