【Raw use of parameterized class ‘xxx‘ 】
IDEA 警告:Raw use of parameterized class ‘xxx’
翻译:参数化类的原始使用
Question: 为什么会出现这个警告信息 ?
Answer: 警告处的对象含有泛型
例如:
去除警告方法:
- 对象带上具体的泛型 (推荐)
- 在方法上加注解 @SuppressWarnings(“rawtypes”)
【Raw use of parameterized class ‘xxx‘ 】
IDEA 警告:Raw use of parameterized class ‘xxx’
翻译:参数化类的原始使用
Question: 为什么会出现这个警告信息 ?
Answer: 警告处的对象含有泛型
例如:
去除警告方法:
- 对象带上具体的泛型 (推荐)
- 在方法上加注解 @SuppressWarnings(“rawtypes”)
发布评论