peaches-book-study / effective-java

이펙티브 자바 3/E
0 stars 2 forks source link

Item 27. 비검사 경고를 제거하라 #26

Open heon118 opened 4 months ago

heon118 commented 4 months ago

Chapter : 5. 제네릭

Item : 27. 비검사 경고를 제거하라

Assignee : heon118


🍑 서론

제네릭을 사용하는 것이 익숙하지 않다면, 비검사 형변환 경고, 비검사 메서드 호출 경고, 비검사 매개변수화 가변인수 타입 경고, 비검사 변환 경고 등 수많은 컴파일러 경고를 보게 될 것이다. 이 때 경고를 무시하지 말고 가능한 제거하자.

🍑 본론

비검사 경고란?

@SuppressWarnings

public <T> T[] toArray(T[] a) {
    if (a.length < size) {
        return (T[]) Arrays.copyOf(elementData, size, a.getClass());
    System.arraycopy(elementData, 0, a, 0, size);
    if (a.length > size)
        a[size] = null;
    return a;
}

Referenced by

-