子类的格式:
子类的使用:
class Test{
public static void main(String[] args) {
Chinese c = new Chinese();
c.setName(“张大力”);
String name = c.getName();
System.out.println(name);//打印结果为张大力
c.eat(); //打印结果吃饭
}
}
格式:类定义:
public class Person{
public void method(){
System.out.println(“一个普通方法”);
}
}
public class Student extends Person{
public void method(){
System.out.println(“一个被重写的方法”);
}
public void method2(){
System.out.println(“一个干扰方法”);
}
}
类使用:
Student s = new Student(); // 这里就是将子类对象赋值给子类的引用
Person p = new Student(); // 子类对象赋值给父类引用
p.method(); //打印结果为:一个被重写的方法
}
public void method2(){
System.out.println(“一个干扰方法”);
}
}
类使用:
Student s = new Student(); // 这里就是将子类对象赋值给子类的引用
Person p = new Student(); // 子类对象赋值给父类引用
p.method(); //打印结果为:一个被重写的方法