-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLesson5_8.java
More file actions
83 lines (70 loc) · 1.38 KB
/
Lesson5_8.java
File metadata and controls
83 lines (70 loc) · 1.38 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/**
多態性
*/
public class Lesson5_8{
public static void main(String[] args){
//用父類的引用指向子類對象(用大的類型表是小的類型),自動轉換(向上轉型)
Chicken hc = new HomeChicken("小雞雞");
//hc.eat();
Chicken yc = new YeChicken("大雞雞");
//yc.eat();
//hc=yc;
//hc.eat();
//eat(hc);
//eat(yc);
Chicken jc = new JianChicken("尖叫雞");
eat(jc);
}
//抽象(粒度) //面向抽象編程(面向接口編成)
public static void eat(Chicken c){
System.out.println("雞吃飯");
c.eat();
JianChicken jc = (JianChicken)c;//大的類型轉換為小的類型,強制轉換(向下轉型)
jc.song();
}
}
//雞
abstract class Chicken{
private String name;
public Chicken(){}
public Chicken(String name){
this.name = name;
}
public void setName(String name){
this.name = name;
}
public String getName(){
return name;
}
public abstract void eat();
}
//家雞
class HomeChicken extends Chicken{
public HomeChicken(String name){
super(name);
}
public void eat(){
System.out.println(this.getName()+",我愛吃米");
}
}
//野雞
class YeChicken extends Chicken{
public YeChicken(String name){
super(name);
}
public void eat(){
System.out.println(this.getName()+",我愛蟲");
}
}
//
class JianChicken extends Chicken{
public JianChicken(String name){
super(name);
}
public void eat(){
System.out.println(this.getName()+",我步吃");
}
public void song(){
System.out.println("我叫");
}
}