본문 바로가기
개발/Java

[3주차] Java 중급 - 상속을 활용한 멤버십 클래스 구현하기

by 컴쏘 2023. 6. 24.

멤버십 시나리오

회사에서 고객 정보를 활용한 맞춤 서비스를 하기 위해 일반 고객(Customer)과 
이보다 충성도가 높은 우수 고객(VIPCustomer)에 따른 서비스를 제공하고자 함

물품을 구매할 때 적용되는 할인율과 적립되는 보너스 포인트의 비율이 다름
여러 멤버십에 대한 각각 다양한 서비스를 제공할 수 있음 
멤버십에 대한 구현을 클래스 상속을 활용하여 구현해보기 

일반 고객(Customer) 클래스 구현

  • 고객의 속성 : 고객 아이디, 고객 이름, 고객 등급, 보너스 포인트, 보너스 포인트 적립비율
  • 일반 고객의 경우 물품 구매 시 1%의 보너스 포인트 적립
package ch03;

public class Customer {
	private int customerID; //고객의 아이디는 중요 정보이기 때문에 private
	private String customerName; // private
	private String customerGrade; // private
	int bonusPoint; // 접근 제한자를 정하지 않았기 때문에 package default이다.
	double bonusRatio; // package default는 외부 package에서는 접근 못함 
	
	public Customer() { // 생성자 (일반 고객)
		customerGrade = "SILVER";
		bonusRatio = 0.01;
	}
	
	public int calcPrice(int price) {
		bonusPoint += price*bonusRatio;
		return price;
	}
	
	public String showCustomerInfo() {
		return customerName + "님의 등급은 " + customerGrade + "이며, 보너스 포인트는" + bonusPoint + "입니다";
	}
}

우수 고객(VIPCustomer) 구현

매출에 더 많은 기여를 하는 단골 고객
제품을 살때 10%를 할인해줌
보너스 포인트는 제품 가격의 5%를 적립해줌
담당 전문 상담원이 배정됨 
  • Customer 클래스에 추가해서 구현하는 것은 좋지 않음
  • VIPCustomer 클래스를 따로 구현
  • 이미 Customer에 구현된 내용이 중복되므로 Customer를 확장하여 구현함(상속)
    • 같은 class 안에서 구현하기에는 if-else문(혹은 다른 조건문)이 좀 많이 들어가야 할 것 같다? 상속을 사용해서 class를 분리해서 구현하자.
package ch03;

public class VIPCustomer extends Customer{
	private int agentID; // 담당 상담원
	double salesRatio; // 할인율
	
	public VIPCustomer() {
		customerGrade = "VIP"; // 오류 발생 상속받은 Customer에서 customerGrade가 private이기 때문
		bonusRatio = 0.05;
		salesRatio = 0.1;
	}
	
	public int getAgentID() {
		return agentID;
	}
}

수정한 Customer

package ch03;

public class Customer {
	protected int customerID; // 상속받은 class에서 사용할 수 있도록 protected로 변경
	protected String customerName; 
	protected String customerGrade; 
	int bonusPoint; // 접근 제한자를 정하지 않았기 때문에 package default이다.
	double bonusRatio; // package default는 외부 package에서는 접근 못함 
	
	public Customer() { // 생성자 (일반 고객)
		customerGrade = "SILVER";
		bonusRatio = 0.01;
	}
	
	public int calcPrice(int price) {
		bonusPoint += price*bonusRatio;
		return price;
	}
	
	public String showCustomerInfo() {
		return customerName + "님의 등급은 " + customerGrade + "이며, 보너스 포인트는" + bonusPoint + "입니다";
	}
}

Customer를 VIPCustomer와 Gold Customer가 상속 받음

protected 접근 제어자

  • 상위 클래스에 선언된 private 멤버 변수는 하위 클래스에서 접근할 수 없음
  • 외부 클래스는 접근할 수 없지만, 하위 클래스는 접근할 수 있도록 protected 접근 제어자를 사용

Source Tab에서 Getters와 Setters 만들기

Customer.java

package ch03;

public class Customer {
	protected int customerID; // 상속받은 class에서 사용할 수 있도록 protected로 변경
	protected String customerName; 
	protected String customerGrade; 
	int bonusPoint; // 접근 제한자를 정하지 않았기 때문에 package default이다.
	double bonusRatio; // package default는 외부 package에서는 접근 못함 
	
	public Customer() { // 생성자 (일반 고객)
		customerGrade = "SILVER";
		bonusRatio = 0.01;
	}
	
	public int calcPrice(int price) {
		bonusPoint += price*bonusRatio;
		return price;
	}
	
	public String showCustomerInfo() {
		return customerName + "님의 등급은 " + customerGrade + "이며, 보너스 포인트는" + bonusPoint + "입니다";
	}

	//getter, setter 구현하기

	public int getCustomerID() {
		return customerID;
	}

	public void setCustomerID(int customerID) {
		this.customerID = customerID;
	}

	public String getCustomerName() {
		return customerName;
	}

	public void setCustomerName(String customerName) {
		this.customerName = customerName;
	}

	public String getCustomerGrade() {
		return customerGrade;
	}

	public void setCustomerGrade(String customerGrade) {
		this.customerGrade = customerGrade;
	}

	public int getBonusPoint() {
		return bonusPoint;
	}

	public void setBonusPoint(int bonusPoint) {
		this.bonusPoint = bonusPoint;
	}

	public double getBonusRatio() {
		return bonusRatio;
	}

	public void setBonusRatio(double bonusRatio) {
		this.bonusRatio = bonusRatio;
	}
	
}

Customer와 VIPCustomer 테스트하기

package ch03;

public class CustomerTest {
	public static void main(String[] args) {
		Customer customerLee = new Customer();
		customerLee.setCustomerName("이순신");
		customerLee.setCustomerID(10010);
		customerLee.bonusPoint = 1000;
		System.out.println(customerLee.showCustomerInfo());
		
		VIPCustomer customerKim = new VIPCustomer();
		customerKim.setCustomerName("김유신");
		customerKim.setCustomerID(10020);
		customerKim.bonusPoint = 10000;
		System.out.println(customerKim.showCustomerInfo());
	}
}

결과


2023 KAKAO Tech Campus_BackEnd 필수 과정
Java 3주차 강의 정리 내용입니다.