gpt4 book ai didi

java - 为什么保护字段对子类不可见?

转载 作者:搜寻专家 更新时间:2023-11-01 03:03:20 24 4
gpt4 key购买 nike

<分区>

我有一个类:

package foo;
public abstract class AbstractClause<T>{
protected T item;
protected AbstractClause<T> next;
}

及其子类(在不同的包中):

package bar;
import foo.AbstractClause;

public class ConcreteClause extends AbstractClause<String>{

public void someMethod(ConcreteClause c) {
System.out.println(this.next); // works fine
System.out.println(c.next); // also works fine
System.out.println(this.next.next); // Error: next is not visible
}
}

为什么?

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com