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

Test1CP.java 259B

12345678910111213141516171819
  1. package circle;
  2. public class Test1CP {
  3. public static void main(String[] args) {
  4. new Base();
  5. }
  6. }
  7. class Base implements Type.Reflexive {
  8. }
  9. class Type {
  10. public interface Reflexive {
  11. }
  12. public class Concrete extends Base {
  13. }
  14. }