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

SourceAspect.aj 204B

123456789101112
  1. package pkg;
  2. public aspect SourceAspect {
  3. declare warning : (get(* System.out) || get(* System.err)) : "There should be no printlns";
  4. pointcut p() : execution(* *.*(..));
  5. before() : p() {
  6. }
  7. }