728x90
오늘 코딩으로
다량의 주문이나 DB관리 때 런파일에서 간단하게 수치만 바꿔서 관리할 수 있는 아주 편리한 기능을 배웠다!!
실행 클래스
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();
}
}
기능 클래스
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() 생성자
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);
}
}
728x90
반응형
'small steps > 1일 1코딩 - 코딩을 내 몸처럼' 카테고리의 다른 글
[1일1코딩] [Java] append(), insert(), delete(), reverse() (0) | 2022.02.19 |
---|---|
[1일1코딩] [Java] 배열(Array) + .length + for문 (0) | 2022.02.19 |
[1일1코딩] [Java] 원의 넓이와 둘레 구하기 + 상수(constant),static (0) | 2022.02.17 |
[1일1코딩] [Java] 생성자(constructor) + this() 생성자 (0) | 2022.02.16 |
[1일1코딩] [Java] 생성자 + getter & setter + 클래스다이어그램 (0) | 2022.02.15 |