annotation - SuppressWarning
生活随笔
收集整理的這篇文章主要介紹了
annotation - SuppressWarning
小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
package com.annotation;import java.util.Date;
import java.util.Map;
import java.util.TreeMap;public class SuppressWarningTest
{/*** SuppressWarnings: 抑制警告, 參數(shù)是數(shù)組, 可以是一個(gè)元素也可以是多個(gè), 多個(gè)則用{}括起來(lái)* * 1.unchecked: 不檢查* * 2.deprcation: 抑制不建議使用的方法的警告* */@SuppressWarnings(value = {"unchecked", "deprecation"})public static void main(String[] args){Map map = new TreeMap();map.put("Zs","張三");System.out.println(map);Date date = new Date();System.out.println(date.toLocaleString()); // 不建議被使用的, 使用"deprecation" 讓警告消失}
}
轉(zhuǎn)載于:https://www.cnblogs.com/DuanLaoYe/p/7550048.html
創(chuàng)作挑戰(zhàn)賽新人創(chuàng)作獎(jiǎng)勵(lì)來(lái)咯,堅(jiān)持創(chuàng)作打卡瓜分現(xiàn)金大獎(jiǎng)總結(jié)
以上是生活随笔為你收集整理的annotation - SuppressWarning的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: 字体图标 —— IconMoon
- 下一篇: Nginx特性验证-反向代理/负载均衡/