class Person{
String name;
int age;
person( String name, int age){
this.name=name;
this.age=age;
}
class Chinese extents Person{
static String country= china;
person(String name, int age){
this.name=name;
this.age=age;
System.out.print("我叫"+name+"今年多少岁了"+age+"来自"+country);
}
这么干可以吗? |
|