- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChapter25.java
More file actions
Latest commit
56 lines (54 loc) · 1.42 KB
/
Copy pathChapter25.java
File metadata and controls
56 lines (54 loc) · 1.42 KB
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
48
49
50
51
52
53
54
55
56
packagechapter25;
classGraphicCard{
intmemory;
publicvoidprocess(){
System.out.println("그래픽 처리");
}
}
classAmdextendsGraphicCard{//상속
publicvoidprocess(){
System.out.println("AMD 그래픽 처리");
}
}
classNvidiaextendsGraphicCard{//상속
publicvoidprocess(){
System.out.println("Nvidia 그래픽 처리");
}
}
classGame{
/*
void display(GraphicCard gc) {
gc.process();
}
void display(Amd gc) {
gc.process();
}
void display(Nvidia gc) {
gc.process();
}
*/
voiddisplay(GraphicCardgc) {
gc.process();
}
}
publicclassComputer {
publicstaticvoidmain(String[] args) {
// TODO Auto-generated method stub
GraphicCardgc = newGraphicCard();
System.out.println(gc.toString());
gc.process();
gc = newAmd();
//상위 클래스로 업케스팅된 상태에도 하위 클래스의 메서드가 동일한 메서가 있으면
//상위 클래스의 메서드를 고쳐서 사용한다고 생각하기 때문에 하위 클래스의 메서드로 수행히게 된다
gc.process();
gc =newNvidia();
gc.process();
Gameg = newGame();
GraphicCardgc1 = newGraphicCard();
g.display(gc1);
Amdgc2 = newAmd();
g.display(gc2);
Nvidiagc3 = newNvidia();
g.display(gc3);
}
}