Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
Tags
- gameQA
- counldn't have
- 명세기반테스트
- continue to
- 코로나19
- 명절 표현
- know
- 형변환
- happen to
- 제5인격
- UE4
- metascore
- by until
- relif
- keep -ing
- end up ing
- html
- might have p.p
- if조건절
- it's a good thing
- C++
- sort함수
- 게임QA
- ISTQB
- Realtime Rendering
- 변수
- by any chance
- for ing
- java
- I'm glad
Archives
- Today
- Total
목록배열 (1)
Records rather than Memories
배열
배열(Array)을 사용하는 이유는 연관된 정보를 그룹핑 하기 위해서 이다. 예를 들어 1반에 여러명의 학생들이 있다고 가정하면 1반 = {'김도훈', '김도일' ... '김도열'} 1반은 변수, 학생은 변수에 소속된 상수로 취급되어 담긴다. 배열의 선언 - 데이터 타입뒤에 []를 붙여야한다. - 데이터들은 중괄호 속에 위치하고 쉼표로 구분된다. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 package javatutorials.array; public class DefineDemo { public static void main(String[] args) { // TODO Auto-generated method stub String[] Alphabet = {"a", "b", "c", "d"..
Software/JAVA
2019. 10. 16. 17:20