> For the complete documentation index, see [llms.txt](https://heunnajo.gitbook.io/java/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://heunnajo.gitbook.io/java/ch5/string-array.md).

# String Array

* **String 배열의 선언과 생성**

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

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