Inventory 不是抽象的,不会重写抽象方法
好吧,我的小程序没有编译,我用谷歌搜索了一些答案,但没有一个起作用。 (例如将 public 移出 public 类)...
这是我的代码: http://www.so .pastebin.com/MBjZGneg
这是我的错误:
C:\Users\Dan\Documents\DanJavaGen\Inventory.java:12: Inventory 不是抽象的,不会覆盖抽象方法 keyReleased(java.awt.event. java.awt.event.KeyListener 中的 KeyEvent) 公共类 Inventory 扩展 Applet 实现 KeyListener {
... 帮助? :) 请。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它的意思就是它所说的。您没有实现 keyReleased 方法。您也没有实现 keyTyped。如果要保留当前的类结构,可以添加空方法:
如果将侦听器放在单独的(可能是内部)类中,则可以扩展 KeyAdapter,它为您提供了这些空方法。
It means what it says. You are not implementing the keyReleased method. You're also not implementing keyTyped. If you want to keep your current class structure, you can add empty methods:
If you put the listener in a separate (possibly inner) class, you could extend KeyAdapter, which provides these empty methods for you.
显然,您需要重写 Inventory 类中的方法“KeyReleased”。我在你们班上找不到这样的人。
只需将其添加到您的类中并添加行为
It's obvious that you need to override the Method "KeyReleased" in your Inventory class. I can't locate such one in your class.
Simply add it to your class and add behavior