多态性——调用基类函数

发布于 2024-12-13 03:11:20 字数 739 浏览 1 评论 0原文

是否可以在不修改基类和派生类的情况下调用基类函数?

class Employee {
    public String getName() {
        return "Employee";
    }

    public int getSalary() {
        return 5000;
    }
}

class Manager extends Employee {
    public int getBonus() {
        return 1000;
    }

    public int getSalary() {
        return 6000;
    }
}

class Test {
    public static void main(String[] args) {
        Employee em = new Manager();
        System.out.println(em.getName());
        // System.out.println(em.getBonus());
        System.out.println(((Manager) em).getBonus());
        System.out.println(em.getSalary());
    }
}

输出: 员工 1000 6000

我该如何调用 em 对象上的 Employee 的 getSalary() 方法?

Is it possible to call base class function without modifying both base and derived classes?

class Employee {
    public String getName() {
        return "Employee";
    }

    public int getSalary() {
        return 5000;
    }
}

class Manager extends Employee {
    public int getBonus() {
        return 1000;
    }

    public int getSalary() {
        return 6000;
    }
}

class Test {
    public static void main(String[] args) {
        Employee em = new Manager();
        System.out.println(em.getName());
        // System.out.println(em.getBonus());
        System.out.println(((Manager) em).getBonus());
        System.out.println(em.getSalary());
    }
}

Output:
Employee
1000
6000

How shall I call the Employee's getSalary() method on em object?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

苏辞 2024-12-20 03:11:20

你不能。如果需要,您可以向 Manager 添加这样的方法:

public int getEmployeeSalary()
{
    return super.getSalary();
}

You can't. You could add a method like this to Manager if you wanted:

public int getEmployeeSalary()
{
    return super.getSalary();
}
半衬遮猫 2024-12-20 03:11:20

使用 Employee 对象代替:

Employee em = new Employee();

Use an Employee object instead:

Employee em = new Employee();
↘紸啶 2024-12-20 03:11:20

您可以从子类中调用超类的方法。

class Manager extends Employee {
    public int getBonus() {
    return 1000;
    }

    public int getSalary() {
    return super.getSalary();
    }
}

You can call the superclass's method from within the subclass.

class Manager extends Employee {
    public int getBonus() {
    return 1000;
    }

    public int getSalary() {
    return super.getSalary();
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文