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.

Parent.java 194B

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