본문 바로가기

명사 美 비격식 (무리 중에서) 아주 뛰어난[눈에 띄는] 사람[것]

JAVA

Annotation - @SuppressWarnings

@SuppressWarnings
특정 경고 메시지를 무시하도록 컴파일러에 지시합니다.

class SuppressWarningExample {
 @SuppressWarnings("unchecked")
 void uncheckedMethod() {
  // 제네릭 타입 안정성 경고를 무시하는 예시
  List list = new ArrayList();
 }
}