本帖最后由 徐晓磊 于 2012-4-24 21:18 编辑
- class Test{
- @Deprecated
- public void paint(){
- System.out.println("AnnotationTest");
- }
- }
- public class AnnotationTest{
-
- public static void main(String[] args){
- new Test().paint();
- }
-
-
- }
复制代码 这样会提出警告:使用了过时的 方法
- public class AnnotationTest{
- public static void main(String[] args){
- new AnnotationTest().paint();
- }
-
- @Deprecated
- public void paint(){
- System.out.println("AnnotationTest");
- }
- }
复制代码 这样却不会提出警告,为什么呢 |
|