JAVA定义栈告警提示:“Stack is a raw type. References to generic type Stack should be parameterized”
JAVA定义栈(该栈为String类型栈)
Stack stack = new Stack();
告警提示:“Stack is a raw type. References to generic type Stack<E> should be parameterized”
显示黄色提示,但并不影响程序正常工作和执行结果。
导致原因:集合类型没有明确定义泛型数据类型 也就是<E>这个内容,所以会有这个提示
解决方法:
- 你可以加上 @SuppressWarnings("rawtypes") 注解就可以去掉警告
- 明确定义该泛型类型如:
//String型
Stack<String> stack = new Stack<String>();
//或者:Integer型
Stack<Integer> stack = new Stack<Integer>();
本文来自博客园,作者:IT情深,转载请注明原文链接:https://www.cnblogs.com/wh445306/p/16751861.html