1 public class TestAnnotation { 2 3 //过时的不推荐使用的,但是可以使用 4 @Deprecated 5 public static void test(){ 6 System.out.println("你好啊"); 7 } 8 //重写 9 @Override 10 public String toString(){ 11 return ""; 12 } 13 14 public static void main(String[] args) { 15 16 test(); 17 18 } 19 20 }