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

pr77269b.aj 222B

1234567891011121314151617181920212223
  1. class Test {
  2. public void testMethod() {
  3. new Runnable() {
  4. public void run() {
  5. }
  6. };
  7. class C {
  8. public void m(){
  9. }
  10. }
  11. }
  12. }
  13. aspect A {
  14. pointcut p() : execution(* m(..));
  15. before() : p() {
  16. }
  17. }