编程语言
首页 > 编程语言> > java-为什么子类的方法更易于访问?

java-为什么子类的方法更易于访问?

作者:互联网

一个简单的例子

class A {
    protected int foo(int x){
        return x;   
    }
}

class B extends A {
    public int foo(int x){
        return x*x; 
    }
}

Java允许这样做,并且没有任何问题.但是,假设您在另一个包中声明

A b = new B();
int z = b.foo(5);

然后这将不起作用,因为显然A foo()受保护.但是,为什么首先要允许子类具有更多可访问的方法呢?在这种情况下有帮助吗?

解决方法:

通常,子类可以向从其父类继承的接口中添加方法.使方法更易于访问有效地添加到界面中.

But then why allow in the first place to have more accessible methods in the subclasses?

因为它对于保存子类引用的代码很有用.

Is there a case where this is helpful?

一个很好的例子是Object.clone(),这是一种受保护的方法.所有Java类都是Object的直接或间接子类.支持克隆的子类可以选择将此方法公开.

Foo foo1 = new Foo();
Foo foo2 = foo1.clone(); // Sometimes you're holding a subclass reference.

标签:access-modifiers,java
来源: https://codeday.me/bug/20191025/1924697.html