62,567
社区成员




package test;
public class father {
public father(){
System.out.println(this.getClass().getName());
}
}
package test;
public class child extends father {
public static void main(String[] args){
child c1 = new child();
}
}