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.

Child.java 200B

12345678910111213
  1. package test;
  2. public class Child extends Parent {
  3. public static void doTT(String o){
  4. System.out.println("child");
  5. }
  6. public static void main(String[] args) {
  7. new Child().doTT("kkk");
  8. }
  9. }