注解 @SuppressWarnings({ “rawtypes”, “unchecked” }) 理解详解编程语言

@SuppressWarnings

上述注解是jse提供的注解。作用是屏蔽一些无关紧要的警告。使开发者能看到一些他们真正关心的警告。从而提高开发者的效率

使用的话 是这样suppressWarnings 禁止显示警告

@SuppressWarnings({ "rawtypes", "unchecked" }) 
	@ResponseBody 
	@RequestMapping(params = "method=getList") 
	public Map getList(CarAddOil obj) {	 
		Map map = new HashMap(); 
		map.put("list", carAddOilService.getList(obj)); 
		map.put("listCount", carAddOilService.getListCount(obj)); 
		return map; 
	}

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/13133.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论