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

123456789
  1. public aspect A3 {
  2. pointcut m1(): call(* *print*(..));
  3. before(): m1() {
  4. System.err.println("Calling print");
  5. }
  6. }