- @Override:定义在java.lang.Override中,此注释只适用于修辞方法,表示一个方法声明打算重写超类中的另一个方法声明.
- Deprecated 不推荐程序员使用的,但是可以使用,或者存在更好的方式
public stactic void text(){ System.out.println("Deprecated") //会正常输出 }
- SuppressWarnings:定义在java.lang.SuppressWarnings中,用来抑制编译时的警告信息
**与前两个不同的是,你需要添加一个参数才能正确使用,这些参数都是一件定义 好的了,我们选择性啥的使用就好了.假如一些
@SuppressWarnings(“all”)
@SuppressWarnings(“unchecked”)
@SuppressWarnings(“unchecked”,deprecation)