blob: 67e91d5b4638e17cbb59f9979c4223236a6e4eeb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package test;
public class Child extends Parent {
public static void doTT(String o){
System.out.println("child");
}
public static void main(String[] args) {
new Child().doTT("kkk");
}
}
|