学习注解与反射
注解
三个内置注解
// @Override 重写的注解 @Override
//@Deprecated 废弃注解 不推荐使用,但是可以使用,或者有更好的方式 @Deprecated
//@SuppressWarnings ***警告注解 @SuppressWarnings("all")
// @Override 重写的注解 @Override
//@Deprecated 废弃注解 不推荐使用,但是可以使用,或者有更好的方式 @Deprecated
//@SuppressWarnings ***警告注解 @SuppressWarnings("all")
相关推荐