[Mini Project] Library Service : Book 관련 메서드(method for Book)
·
◈ Human Project/Mini : Library Service📚
- Library Service : Book 관련 메서드(method for Book) 1. Book 관련 주요 메서드 findBook() : 도서 데이터를 목록화하여 전체재고조회(1)와 도서번호검색(2)으로 출력하는 메서드. public void findBook() { // 사서(관리자)용 기능 int storageIndex = nextInt("1.전체재고조회 2.도서번호검색 > ", 1, 2); switch (storageIndex) { case 1: bookList(); break; case 2: List booksInven = findLibBookListByBookID(nextInt("조회할 도서의 도서번호를 입력해주세요. > ")); if (booksInven.size() > 0) { // 북I..