클래스 상속

- 이미 구현된 기능을 확장하여 사용한다는 개념 ( 클래스를 재사용하는 개념이 아님 )

- 새로운 클래스를 정의할 때 이미 구현된 클래스를 상속받아서 속성이나 기능을 확장하여 클래스를 구현함

- 이미 구현된 클래스보다 더 구제적인 기능을 가진 클래스를 구현해야할 때 기존 클래스를 상속함

 

상속하는 클래스(A) : 상위 클래스

상속받는 클래스(B) : 하위 클래스

일 때 아래처럼 구현함.

1
2
3
class B extends A {
 
}
cs

 

- extends 키워드 뒤에는 단 하나의 클래스만 올 수 있음

- java는 단일 상속(single inheritance)만을 지원함(c++은 여러개 상속 가능)

- 여러개를 상속하게되면 모호성이 발생할 수 있음 -> 추후 업데이트 예정!

  : 상속받을 수 있는 클래스가 많을수록 더 많은 기능을 확장할 수 있지만, 그로인해서 발생하는 문제점을 없애버리기 위해 java는 단일상속으로 고안됨

 

 

상속을 구현하는 경우

- 상위 클래스는 하위 클래스보다 더 일반적인 개념과 기능을 가짐

- 하위 클래스는 상위 클래스보다 더 구체적인 개념과 기능을 가짐

- 하위 클래스가 상위 클래스의 속성과 기능을 확장(extends)한다는 의미

- 원래있던 클래스보다 기능이 많아야하고 구체적이어야 하는 경우 기존의 클래스를 상속받음(결은 같음!)

- 기존의 괜찮은 클래스가 있고 그 기능을 가져다 쓰고싶다고 상속을 하는것은 아님!!!

 

 

실습을 해보자아

- 클래스에 if else가 많으면 상속을 한 번 생각해볼 필요가 있음

- protected 접근제어자 : 하위클래스에서는 접근이 가능하지만 외부 클래스에서는 접근할 수 없음

 

Customer.java

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
public class Customer {
    protected int customerID;
    protected String customerName;
    protected String customerGrade;
    
    int bonusPoint;
    double bonusRatio;
    
    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 Customer() {
        customerGrade = "SILVER";
        bonusRatio = 0.01;
    }
 
    public int calcPrice(int price) {
        bonusPoint += price * bonusRatio;
        return price;
    }
    
    public String showCustomerInfo() {
        return customerName + "님의 등급은 " + customerGrade + "이며, 보너스 포인트는 " + bonusPoint + "입니다.";
    }
 
}
cs

 

VIPCustomer.java

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
public class VIPCustomer extends Customer {
    
    double salesRatio;
    private String agentID;
    
    
    public String getAgentID() {
        return agentID;
    }
 
 
    public void setAgentID(String agentID) {
        this.agentID = agentID;
    }
 
 
    public VIPCustomer() {
        bonusRatio = 0.05;
        salesRatio = 0.1;
        customerGrade = "VIP";
    }
    
    
}
cs

 

CustomerTest.java

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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());
 
    }
 
}
cs

 

 

 

출처 : 패스트캠퍼스

+ Recent posts