BookArray Book -> 내가 만든, 사용자 정의 자료형이다. 사용자 정의 자료형 배열에 데이터를 저장하고 출력해보자 일단 BookDTO 제작 잘만든 DTO 란.. 정보 보호(private 은닉 ), set, get, toString(). 기본 생성자를 오버로딩해 초기화 할 수 있는 생성자를 만든다. public class Book { private String title; private int price; public Book(){} public Book(String title, int price) { this.title = title; this.price = price; } public String getTitle() { return title; } public void setTitle(Str..