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

12345678910111213
  1. import java.util.List;
  2. aspect F {
  3. void A.xx(List<String> x) { }
  4. }
  5. class A {
  6. //void xx(List<String> x) {}
  7. }
  8. class E {
  9. void foo() {
  10. new A() {}.xx(null);
  11. }
  12. }