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

PR93345.aj 238B

123456789101112
  1. // "XLint warning for advice not applied with cflow(execution)"
  2. class AClass {
  3. }
  4. aspect AnAspect {
  5. pointcut a() : cflow( execution(* *(..)) );
  6. before() : a() {
  7. System.out.println("before a");
  8. }
  9. }