일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 다운캐스팅
- 형변환
- 25가지 효율적인 sql작성법
- 전자정부
- 업캐스팅
- 이클립스
- 페이징
- IBatis procedure
- Validations
- Random
- 로또
- full text indexing
- 전체텍스트
- 가변인자
- 자바 야구게임
- 상속
- 추상클래스
- 상속예제
- jquery
- angular2
- 전체
- 단축키
- 다형성
- 스프링
- 자바
- 야구게임
- Full text
- while
- Login with OAuth Authentication
Archives
- Today
- Total
nalaolla
배열예제 13 (객체 배열) 본문
728x90
반응형
- package test.com;
- public class Test08arrayarray3 {
- public static void main(String[] args) throws NullPointerException {
- // TODO Auto-generated method stub
- System.out.println("다중배열...");
- // 임의의 text를 입력하세요...
- String[][] strss = new String[3][2];
- for (int i = 0; i < strss.length; i++) {
- for (int j = 0; j < strss[i].length; j++) {
- strss[i][j] = i + "_" + j + "_배열위치";
- }
- }
- strss[0][0] = "00";
- strss[0][1] = "01";
- strss[1][0] = "10";
- strss[1][1] = "11";
- strss[2][0] = "20";
- strss[2][1] = "21";
- strss[0] = new String[] { "000", "111" };
- strss[1] = new String[] { "222", "333" };
- strss[2] = new String[] { "444", "555" };
- // strss를 이중for문을 사용해서 출력하시오..
- for (int i = 0; i < strss.length; i++) {
- for (int j = 0; j < strss[i].length; j++) {
- System.out.print(strss[i][j] + " ");
- }
- System.out.println();
- }
- System.out.println("====================================");
- String[][] namess = new String[][] { { "a" }, { "bb", "bb" }, { "cc", "cc", "cc" } };
- for (int x = 0; x < namess.length; x++) {
- for (int i = 0; i < namess[x].length; i++) {
- System.out.print(namess[x][i] + " ");
- }
- System.out.println();
- }
- } // end main
- }
728x90
반응형
'JAVA > 4. Array' 카테고리의 다른 글
배열예제 14 (0) | 2016.06.22 |
---|---|
배열예제 12 (다중배열 2) (0) | 2016.06.22 |
배열예제 11 (다중배열) (0) | 2016.06.22 |
배열예제 10 (점수관리 배열2) (0) | 2016.06.22 |
배열예제 9 (점수관리 배열) (0) | 2016.06.22 |