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

InterfaceConstructor.java 204B

123456789
  1. interface i {
  2. i() {} // ERR: interfaces can't have constructors
  3. }
  4. class c {
  5. c(); //ERR: constructors must have bodies
  6. abstract c(int i) { } //ERR: constructors can't be abstract
  7. }