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

AbstractSuperAspectWithAround.aj 251B

123456789
  1. public abstract aspect AbstractSuperAspectWithAround {
  2. protected abstract pointcut scope ();
  3. void around () : execution(public static void main(String[])) && scope() {
  4. System.out.println("? " + thisJoinPoint.getSignature());
  5. proceed();
  6. }
  7. }