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

pr105479.aj 207B

12345678910111213
  1. public aspect pr105479 {
  2. private interface Test {
  3. Object getId();
  4. }
  5. class StringTest {
  6. public String getId() {
  7. return null;
  8. }
  9. }
  10. declare parents : StringTest implements Test;
  11. }