public class Academy { private int studentNo; private String name;
// 기본 생성자
public Academy() {}
//매개변수 있는 생성자
public Academy(int studentNo, String name) {
this.studentNo = studentNo;
this.name = name;
}
}
package com.kh.example.practice4.run;
import com.kh.example.practice4.model.vo.Book;
public class Run {
public static void main(String[] args) {
Book b1 = new Book();
// b1.inform();
Book b2 = new Book("책1","출판사1","저자1");
// b2.inform();
Book b3 = new Book("책2","출판사2","저자2",10000,0.3);
b3.inform();
}
}
기능 클래스
package com.kh.example.practice4.model.vo;
public class Book {
private String title;
private String publisher;
private String author;
private int price;
private double discountRate;
// 기본 생성자
public Book() {
}
// 매개변수 3개인 생성자
public Book(String title, String publisher, String author) {
this.title = title; // 값넣기까지 초기화 // 값을 대입시키는게 초기화
this.publisher = publisher;
this.author = author;
}
// 매개변수 5개인 생성자
public Book(String title, String publisher, String author,
int price, double discountRate) {
this.title = title;
this.publisher = publisher;
this.author = author;
// this(title,publisher,author); 위의 세줄과 같은 코드
this.price = price;
this.discountRate = discountRate;
}
public void inform() {
System.out.printf(" title : %s%n publisher : %s%n author : %s%n price : %d%n 할인율 : %f",title,publisher,author,price,discountRate);
}
}