class Animal{
public void move() {
System.out.println("동물이 움직입니다.");
}
public void eating() {
}
}
class Human extends Animal{
public void move() {
System.out.println("사람이 두발로 걷습니다.");
}
public void readBooks() {
System.out.println("사람이 책을 읽습니다.");
}
}
class Tiger extends Animal{
public void move() {
System.out.println("호랑이가 네 발로 뜁니다.");
}
public void hunting() {
System.out.println("호랑이가 사냥을 합니다.");
}
}
class Eagle extends Animal{
public void move() {
System.out.println("독수리가 하늘을 날아갑니다.");
}
public void flying() {
System.out.println("독수리가 날개를 쭉 펴고 멀리 날아갑니다");
}
}
public class AnimalTest {
public static void main(String[] args) {
Animal hAnimal = new Human();
Animal tAnimal = new Tiger();
Animal eAnimal = new Eagle();
AnimalTest test = new AnimalTest();
test.moveAnimal(hAnimal);
test.moveAnimal(tAnimal);
test.moveAnimal(eAnimal);
}
public void moveAnimal(Animal animal) {
animal.move();
}
사람이 두발로 걷습니다.
호랑이가 네 발로 뜁니다.
독수리가 하늘을 날아갑니다.
public class GoldCustomer extends Customer {
double salesRatio; // 할인 비율
public GoldCustomer(int customerID, String customerName) {
super(customerID, customerName);
salesRatio = 0.1;
bonusRatio = 0.02;
customerGrade = "GOLD";
}
@Override
public int calcPrice(int price) {
bonusPoint += price * bonusRatio;
return price - (int)(price * salesRatio);
}
}
public class CustomerTest {
public static void main(String[] args) {
ArrayList<Customer> customersList = new ArrayList<>();
Customer customerT = new Customer(0001, "Tomas");
Customer customerJ = new Customer(0002, "James");
Customer customerP = new GoldCustomer(0003, "Park");
Customer customerK = new GoldCustomer(0004, "Kim");
Customer customerL = new VIPCustomer(0005, "Lee");
customersList.add(customerT);
customersList.add(customerJ);
customersList.add(customerP);
customersList.add(customerK);
customersList.add(customerL);
System.out.println("고객 정보 출력");
for( Customer customer : customersList) {
System.out.println(customer.showCustomerInfo());
}
int price = 10000; // 10000원 상품
for (Customer customer : customersList) {
int cost = customer.calcPrice(price);
System.out.println(customer.getCustomerName() + "님이" + cost +"원 지불 하셨습니다.");
System.out.println(customer.getCustomerName() + "님의 현재 보너스 포인트는" + customer.bonusPoint + "입니다." );
}
if (customerK instanceof GoldCustomer) { // customerK가 GoldCustomer인지 확인 시켜줘 => true값이면 아래코드 실행!!
GoldCustomer vc = (GoldCustomer)customerK;
System.out.println(customerK.showCustomerInfo());
}
}
}
고객 정보 출력
Tomas님의 등급은 SILVER이며, 보너스 포인트는0입니다.
James님의 등급은 SILVER이며, 보너스 포인트는0입니다.
Park님의 등급은 GOLD이며, 보너스 포인트는0입니다.
Kim님의 등급은 GOLD이며, 보너스 포인트는0입니다.
Lee님의 등급은 VIP이며, 보너스 포인트는0입니다.
Tomas님이10000원 지불 하셨습니다.
Tomas님의 현재 보너스 포인트는100입니다.
James님이10000원 지불 하셨습니다.
James님의 현재 보너스 포인트는100입니다.
Park님이9000원 지불 하셨습니다.
Park님의 현재 보너스 포인트는200입니다.
Kim님이9000원 지불 하셨습니다.
Kim님의 현재 보너스 포인트는200입니다.
Lee님이9000원 지불 하셨습니다.
Lee님의 현재 보너스 포인트는500입니다.
Kim님의 등급은 GOLD이며, 보너스 포인트는200입니다.