首页 > 编程语言 > 详细

java中的继承

时间:2019-12-25 23:09:17      阅读:91      评论:0      收藏:0      [点我收藏+]

如果两个类具有重合的部分就可以用继承的方式进行处理

下述例子中的Student就继承了Person中的age和name

public class test06{
     public static void main(String[] args) {
        Student S=new Student();
        S.age=12;
        System.out.println(S.age);    
    }
}
class Person {
    public String name;
    public int age;
}

class Student extends Person {
    public int score;  
}

注意:

1.个类有且仅有一个父类

2.子类无法父类的私有属性和私有方法(理论上私有属性是可以在同一函数内的进行访问的)

关于解决子类无法访问父类的问题,可将父类中的关键词private改为protected

public class test{
     public static void main(String[] args) {
      Student student=new Student();
      
        System.out.println(student.hello());    
    }
}
class Person {
    protected String name="lipu";
    protected int age;
}

class Student extends Person {
    public String hello() {
        return "Hello, " + name; 
    }
}

关于super的使用:在子类的构造函数中调用父类的构造函数就要使用super,否则会报错

class Person {
    protected String name;
    protected int age;
    public Person(String name, int age) {
    this.name = name;
    this.age = age;
    }
}

class Student extends Person {
   protected int score;
    public Student(String name, int age, int score) {
    super(name, age);
        this.score = score;
    }
}

java中的继承

原文:https://www.cnblogs.com/lipu12281/p/12099014.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!