从子类初始化私有变量

时间:2019-02-14 10:55:06

标签: java private

我即将参加考试,练习任务之一如下:

此任务的我的问题是两个私有变量的名称和过程。 私有意味着它们不能被子类覆盖,对吗? 我应该如何从子类初始化那些变量?

到目前为止,这是我的代码,但是它不起作用:

class Bachelor extends Student{
    Bachelor (String n, String c){
        name = n;
        course = c;
    }
    void printlabel() {
        System.out.println("%s\nBachelor %s",name, course);
    }
}
class Master extends Student{
    Master (String n, String c){
        name = n;
        course = c;
    }
    void printlabel() {
        System.out.println("%s\nMaster %s",name, course);
    }
}

public abstract class Student {
    private String name;
    private String course;
    public Student (String n, String c) {
        name = n;
        course = c;
    }
    void printname() {
        System.out.println(name);
    }
    void printcourse() {
        System.out.println(course);
    }

    public static void main(String[] args) {
        Bachelor rolf = new Bachelor("Rolf", "Informatics");
        rolf.printname();

    }
    abstract void printlabel();
}

详细说明: 使用两个私有对象变量class Studentname创建course。 然后创建一个构造函数来初始化这些变量,方法printname()printcourse()以及抽象方法printlabel()

然后创建两个子类BachelorMaster。他们应该具有构造函数并覆盖抽象方法。

例如

Bachelor b = new Bachelor("James Bond", "Informatics");
b.printlabel();

应该返回名称,类名和课程。

2 个答案:

答案 0 :(得分:1)

您可以使用a call to super()访问超类构造函数。因此,在您的子类中,只需调用super(n, c);而不是直接分配变量,您应该会获得预期的行为。

答案 1 :(得分:0)

添加设置私有属性的公共方法。从构造函数调用所说的公共方法。