더북(TheBook)

6. Book 클래스를 보면 기본 생성자와 생성자가 추가된 것을 확인할 수 있습니다.

코드 4-2 BookMarket/src/main/java/com.springmvc.domain/Book.java

package com.springmvc.domain;

public class Book {
    ...
    private String condition; // 신규 도서 또는 중고 도서 또는 전자책

 

➊기본 생성자

    public Book() { 
        super();
        // TODO Auto-generated constructor stub
    }

 

➋일반 생성자

public Book(String bookId, String name, int unitPrice) {

        super();
        this.bookId = bookId;
        this.name = name;
        this.unitPrice = unitPrice;
    }
}

 

신간 소식 구독하기
뉴스레터에 가입하시고 이메일로 신간 소식을 받아 보세요.