为什么要在Java或Android中使用@Override?

javaAndroid中有@Override注释.这是什么意思?我发现,当方法来自于子类或继承接口的方法时,我会使用它,我想进一步知道其他的是@SuppressWarnings它也是Anonation,如果是,由java使用多少个annonation和为了哪个目的.

解决方法

这个问题也在这里回答,相当简洁:
Android @Override usage

It’s an annotation that you can use to tell the compiler and your IDE that you intend the method that has that annotation to be an override of a super class method. They have warning/errors in case you make mistakes,for example if you intend to override a method but misspell it,if the annotation is there the IDE or the compiler will tell you that it is not in fact overriding the super class method and thus you can determine why and correct the misspelling.

This is all the more important for Android applications and activities for example,where all of the calls will be based on the activity lifecycle – and if you do not properly override the lifecycle methods they will never get called by the framework. Everything will compile fine,but your app will not work the way you intend it to. If you add the annotation,you’ll get an error.

换句话说,如果你添加了@Override,这有助于确保你真的覆盖现有的方法!相当有用

相关文章

Android性能优化——之控件的优化 前面讲了图像的优化,接下...
前言 上一篇已经讲了如何实现textView中粗字体效果,里面主要...
最近项目重构,涉及到了数据库和文件下载,发现GreenDao这个...
WebView加载页面的两种方式 一、加载网络页面 加载网络页面,...
给APP全局设置字体主要分为两个方面来介绍 一、给原生界面设...
前言 最近UI大牛出了一版新的效果图,按照IOS的效果做的,页...