微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

为什么要在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,这有助于确保你真的覆盖现有的方法!相当有用

原文地址:https://www.jb51.cc/android/125487.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐