抑制 eclipse 中未实现的方法
是否可以抑制 Eclipse 中的未实现方法错误?如果是这样,这是明智之举还是会导致可能的不稳定?
Is it possible to suppress the unimplemented methods error in eclipse? If so, is this a smart thing to do or will this cause possible instability?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法抑制它,因为它不是警告。如果不实现
接口
或抽象类
的抽象方法,您就会破坏它们的契约。这不是明智之举,因为您的代码无法编译。
You cannot suppress this, because it is not a warning. You would be breaking the contract of an
interface
or anabstract class
by not implementing their abstract methods.It is not a smart thing to do, because your code would not compile.