其他分享
首页 > 其他分享> > 报错为method does not override method from its superclass解决方案

报错为method does not override method from its superclass解决方案

作者:互联网

	这个错误一般出现在@Override注解上面,意思是重写接口中的方法必须在实现类中实现接口。在实现类上通过implements 实现相关接口即可。
	例如(public class Welcome implements Job)后面通过 implements 实现相关接口就会发现不报错了。

标签:implements,实现,接口,its,报错,superclass,method
来源: https://blog.csdn.net/shuo_Java/article/details/123611976