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

MultipleSuperCf.java 254B

12345678910111213141516
  1. import org.aspectj.testing.Tester;
  2. interface B1 { }
  3. interface B2 { }
  4. interface D extends B1, B2 {}
  5. aspect A {
  6. public int B1.m() {
  7. return 2;
  8. }
  9. public int D.m() {
  10. return super.m(); // CE even though B1.m is the only thing that makes sense
  11. }
  12. }