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

TraceV1.aj 238B

1234567891011
  1. aspect Trace {
  2. public static boolean expectNoSuchMethodError = false;
  3. before(): execution(void doit(..)) {
  4. System.out.println("enter");
  5. }
  6. after() returning: execution(void doit(..)) {
  7. System.out.println("exit");
  8. }
  9. }