首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > 编程 >

java提供的几个根本的注解

2012-12-22 
java提供的几个基本的注解package com.zchen.annotationpublic class AnnotationTest {@SuppressWarnings

java提供的几个基本的注解

package com.zchen.annotation;public class AnnotationTest {@SuppressWarnings("deprecation") //调用过时的方法,用这个注解会压缩警告public static void main(String[] args) {System.runFinalizersOnExit(true);//new AnnotationTest().sayHello();}@Deprecated //如果写的方法过时了但又要支持以前的版本就用这个注解public static void sayHello(){System.out.println("hello zchen");}@Override//子类覆盖父类的方法public String toString() {return null;}}
?

热点排行