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

12345678910111213141516171819202122
  1. aspect A {
  2. public abstract Object I.clone();
  3. public abstract Object I.ordinary();
  4. }
  5. interface I { }
  6. interface I2 {
  7. public abstract Object clone();
  8. public abstract Object ordinary();
  9. }
  10. class Impl implements I {
  11. public Object clone() { return this;}
  12. public Object ordinary() { return this;}
  13. }
  14. class Impl2 implements I2 {
  15. public Object clone() { return this;}
  16. public Object ordinary() { return this;}
  17. }