Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
继承的包可以覆盖父包中的 java 类吗?我想更改捆绑包中的一个类,因此为此我将使用继承概念来让新捆绑包继承父捆绑包。请让我知道我该怎么做?
提前致谢。
是的,只需使用普通的 Java 继承即可。
包含基类的包需要导出该类所属的包,包含子类的包需要导入相同的包。