十年網(wǎng)站開發(fā)經(jīng)驗 + 多家企業(yè)客戶 + 靠譜的建站團隊
量身定制 + 運營維護+專業(yè)推廣+無憂售后,網(wǎng)站問題一站解決
public class Demo {
//重寫父類方法
@Override
public String toString()
{
return "";
}
//表示不建議使用
@Deprecated
public static void test001()
{
System.out.println("aaa");
}
//消除編譯器左邊的警告
@SuppressWarnings("all")
public static void test002()
{
List list =new ArrayList();
List list2 =new ArrayList();
}
public static void main(String[] args) {
Date d=new Date();
test001();
}
}