반응형 SMALL 전체 글118 [JAVA] 접근 제한자 cf. do it 자바 프로그래밍 강의 (인프런) 2022. 3. 24. [JAVA] ArrayList 클래스 ArrayList에는 '인덱스'라는 개념이 없다! import java.util.ArrayList; public class ArrayListTest { public static void main(String [] args) { ArrayList list = new ArrayList(); list.add("aaa"); list.add("bbb"); list.add("ccc"); for(int i=0;i 2022. 3. 24. [JAVA] 객체 배열의 깊은 복사 class Book { private String title; private String author; public Book() {} public Book(String title, String author) { this.setTitle(title); this.setAuthor(author); } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getAuthor() { return author; } public void setAuthor(String author) { this.author = author; } public String toString.. 2022. 3. 23. [JAVA] 객체 배열의 얕은 복사 class Book { private String title; private String author; public Book() {} public Book(String title, String author) { this.setTitle(title); this.setAuthor(author); } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getAuthor() { return author; } public void setAuthor(String author) { this.author = author; } public String toString.. 2022. 3. 23. 이전 1 ··· 13 14 15 16 17 18 19 ··· 30 다음 반응형 LIST