본문 바로가기

Programming/JAVA

자바(java)에서 배열 생성하는 법

int [] mydream = new int[10];
일반객체의 경우도 위의 데이터타입처럼 배열형태로 생성이 가능한다.
Music[] m = new Music[10];
후후후후