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

AspectBoolean.aj 316B

1234567891011
  1. public aspect AspectBoolean {
  2. // The pointcuts here expose context
  3. before(Boolean i): within(AutoboxingZ) && call(* met*(..)) && args(i) {
  4. System.err.println("Boolean:"+i);
  5. }
  6. before(boolean i): within(AutoboxingZ) && call(* met*(..)) && args(i) {
  7. System.err.println("boolean:"+i);
  8. }
  9. }