package edu.wtbu;标签:内置,Deprecated,void,static,toString,注解,public From: https://www.cnblogs.com/123456dh/p/17253222.html
import java.util.ArrayList;
import java.util.List;
@SuppressWarnings("all")//镇压所有警告
public class Demo01 extends Object{
@Override //重写的注解
public String toString() {
return super.toString();
}
@Deprecated //不推荐程序员使用,但是可以使用,因为存在危险或者存在更好的方式
public static void test(){
System.out.println("Deprecated");
}
public void test01(){
List list = new ArrayList();
}
public static void main(String[] args) {
test();//Deprecated
}
}