注: Example21.java使用了未经检查或不安全的操作。 注: 有关详细信息, 请使用 -Xlint:unchecked 重新编译。
2019.5.11
报错:注: Example21.java使用了未经检查或不安全的操作。 注: 有关详细信息, 请使用 -Xlint:unchecked 重新编译。

解决办法:
在报错方法前增加该语句
@SuppressWarnings("unchecked")
2019.5.11

在报错方法前增加该语句
@SuppressWarnings("unchecked")