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

12345678
  1. package a;
  2. public aspect B {
  3. void around():call(void *(..)){
  4. A a = new A();
  5. a.A.a.x(); // This line raises the NPE
  6. proceed();
  7. }
  8. }