아이템27 비검사 경고를 제거하라
Effective Java 3e 아이템 27를 요약한 내용 입니다.
Set<Lark> exaltation = new HashSet();
Venery.java:4: warning: [unchecked] unchecked conversion
Set<Lark> exaltation = new HashSet();
^Set<Lark> exaltation = new HashSet<>();public <T> T[] toArray(T[] a) {
if(a.length < size) {
// 생성한 배열과 매개변수로 받은 배열의 타입이 모두 T[]로 같으므로
// 올바른 형변환이다.
@SuppressWarnings("unchecked") T[] result =
(T[]) Arrays.copyOf(elements, size, a.getClass());
return result;
}
...
}SuppressWarnings 종류
정리
Last updated