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.
我希望我Widgets的类的get方法扩展超类的方法org.powerbot.game.api.methods.Widgets,但我得到一个编译错误:
Widgets
get
org.powerbot.game.api.methods.Widgets
但是,超类显然有一个匹配get方法:
staticJava中的方法不是多态的。换句话说,它们不能被覆盖。
static
@Overide 注解用于标记被覆盖的方法。静态方法不能在 java 中被覆盖。但是你可以重新定义它们。只需删除注释。您可以选择在子类静态方法中调用超类静态方法。