继承(详解)

继承

继承(详解)_第1张图片

继承测试

public class Person {

    //优先级高低
    //public    公共的
    //protected 受保护的
    //default   默认的
    //private   私有的
    private int money;
    public void speak(){
        System.out.println("说了一句话");
    }

    public int getMoney() {
        return money;
    }

    public void setMoney(int money) {
        this.money = money;
    }
}
/*
public class Application {
    public static void main(String[] args) {
        Student stu1 = new Student();
        stu1.speak();
        System.out.println(stu1);
        stu1.setMoney(1000000);
        System.out.println(stu1.getMoney());
    }
}
//学生 人  :派生类 子类
//子类继承父类,就会拥有父类全部方法
public class Student extends Person{
}
 */
lic class Student extends Person{
}
 */

你可能感兴趣的:(java,开发语言)