You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

C.java 283B

123456789101112131415161718192021222324
  1. public class C extends A{
  2. public void helper0() {
  3. }
  4. public C() {
  5. super(3);
  6. }
  7. public static void main(String[] argv) {
  8. new C();
  9. }
  10. public C(String s) {
  11. super(5);
  12. }
  13. public void helper1() {
  14. }
  15. public C(float f) {
  16. }
  17. public void helper2() { }
  18. }