Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

InterfaceConstructor.java 204B

před 21 roky
před 21 roky
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. }