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

123456789101112131415
  1. package test;
  2. public class C {
  3. public C() {
  4. new C();
  5. }
  6. // public static void main(String[] args) {
  7. // new C();
  8. // }
  9. }
  10. aspect X {
  11. before () : call(public *..C.new()) {}
  12. }