String Array

  • String 배열의 선언과 생성

String[] name = new String[3];//3개의 문자열을 담을 수 있는 배열

String은 참조형이기 때문에 배열에는 기본값으로 null이 저장된다.

Last updated