자바의 자료형은 Primitive Type(기본형) 과 Reference Type(참조형)으로 나뉩니다.
Null
을 가질 수 없는 형태기본형에 null을 넣고 싶다면 래퍼 클래스Wrapper Class를 활용
하면 됩니다. 래퍼 클래스는 기본형을 클래스로 감싼 형태입니다. 다음처럼 사용합니다.interface MyInterface<T> {
void add(T value);
}
Long
).public class ArrayType {
public static void main(String[] args) {
int [] i = new int[2];
Long [] l = new Long[2];
Object[][] o = null;
}
}