Presentation is loading. Please wait.

Presentation is loading. Please wait.

繼承與多型 (Inheritance and Polymorphism)

Similar presentations


Presentation on theme: "繼承與多型 (Inheritance and Polymorphism)"— Presentation transcript:

1 繼承與多型 (Inheritance and Polymorphism)
鄭士康 國立台灣大學 電機工程學系/電信工程研究所/ 資訊網路與多媒體研究所

2 綱要 繼承 修飾語protected 限制繼承 繼承架構下的建構函式呼叫 OCP:開放-封閉原理 多型 二十一點模擬程式0.1版
*覆寫與隱藏

3 綱要 預設類別System.Object LSP: Liskov替代性原理 抽象類別 DIP: 依存性反轉原理 介面 ISP: 介面分離原理
多重介面 *多重介面鑄形

4 綱要 繼承 修飾語protected 限制繼承 繼承架構下的建構函式呼叫 OCP:開放-封閉原理 多型 二十一點模擬程式0.1版 覆寫與隱藏

5 UsingInheritance.Calculator 片段
public int Add(int a, int b) { int result = a + b; return result; } public int Subtract(int a, int b) { int result = a - b; public int Multiply(int a, int b) int result = a * b;

6 UsingInheritance.Program. Program.Main() 片段(1/2)
AdvancedCalculator calculator = new AdvancedCalculator(); . . . switch (op) { case 1: result = calculator.Add(operand1,operand2); Console.WriteLine("{0} + {1} = {2} ", operand1, operand2, result); break;

7 UsingInheritance.Program. Program.Main() 片段(2/2)
case 5: functionValue = calculator.GetSine(angle); Console.WriteLine( "Sine of {0} (deg) = {1}", angle, functionValue); break; . . . }

8 UsingInheritance.AdvancedCalculator 片段
public class AdvancedCalculator : Calculator { public double GetSine(double angle) angle *= Math.PI / 180.0; return Math.Sin(angle); } . . .

9 表示繼承的UML類別圖

10 類別繼承之階層關係 class A { private int data1; private int data2;
//…other members are methods } class B : A { private int data3; class C : B { private int data4; A B C

11 物件記憶體分配模型 A a = new A(); data1 a B b = new B(); C c = new C(); data2 c

12 練習 實作並測試下列繼承關係

13 綱要 繼承 修飾語protected 限制繼承 繼承架構下的建構函式呼叫 OCP:開放-封閉原理 多型 二十一點模擬程式0.1版 覆寫與隱藏

14 UsingProtected.Program. Program.Main()片段
DC d = new DC(); d.SetX(3); //Console.WriteLine( d.GetX() ) ; // Error! //d.x = 77; // Error! d.Add2();

15 UsingProtected.Program片段
class BC { private int x; public void SetX( int x ) { this.x = x; } protected int GetX() { return x; } } class DC : BC public void Add2() int c = GetX(); SetX( c+2 );

16 綱要 繼承 修飾語protected 限制繼承 繼承架構下的建構函式呼叫 OCP:開放-封閉原理 多型 二十一點模擬程式0.1版 覆寫與隱藏

17 限制繼承 sealed class SClass { }

18 綱要 繼承 修飾語protected 限制繼承 繼承架構下的建構函式呼叫 OCP:開放-封閉原理 多型 二十一點模擬程式0.1版 覆寫與隱藏

19 UsingConstructorsForInheritance. Program.Main() 片段
Animal slug = new Animal(); Animal tweety = new Animal( "canary" ); Primate godzilla = new Primate(); Primate human = new Primate( 4 ); Human jill = new Human();

20 UsingConstructorsForInheritance.Program 片段(1/3)
class Animal { private string species; public Animal() Console.WriteLine("Animal()"); species = "Animal"; } public Animal( string s ) Console.WriteLine("Animal("+ s +")"); species = s;

21 UsingConstructorsForInheritance.Program 片段(2/3)
class Primate : Animal { private int heartCham; public Primate() : base() Console.WriteLine( "Primate()" ); } public Primate( int n ) : base( "Primate" ) Console.WriteLine("Primate(" + n +")"); heartCham = n;

22 UsingConstructorsForInheritance.Program 片段(3/3)
class Human : Primate { public Human() : base( 4 ) Console.WriteLine( "Human()" ); }

23 衍生物件產生流程 Primate human = new Primate( 4 );
public Primate( int n ) : base( "Primate" ) { . . . } public Animal( string s ) { . . . }

24 練習 利用偵錯器體驗了解程式UsingConstructorsForInheritance

25 綱要 繼承 修飾語protected 限制繼承 繼承架構下的建構函式呼叫 OCP:開放-封閉原理 多型 二十一點模擬程式0.1版 覆寫與隱藏

26 開放-封閉原理 (OCP:Open-Closed Principle)
Software entities (classes, modules, functions, etc.) should be open for extension, but closed for modification 增添軟體單元新功能,但不影響此軟體單元的程式碼 *Robert C. Martin, Agile Software Development: Principles, Patterns, and Practices, Pearson Education, 2003

27 程式OCPViolationExample類別圖

28 OCPViolationExample.Program. Program.Main() 片段
Point center; center.x = 15; center.y = 20; Point topLeft; topLeft.x = 30; topLeft.y = 40; Shape[] list = { new Circle(2, center), new Rectangle(3, 4, topLeft) }; DrawAllShapes(list);

29 OCPViolationExample.Program.Program 片段 (1/2)
static void DrawAllShapes(Shape[] list) { for (int i = 0; i < list.Length; ++i) { Shape s = list[i]; switch (s.type) { case ShapeType.CIRCLE: DrawCircle((Circle) s); break; case ShapeType.RECTANGLE: DrawRectangle((Rectangle) s); }

30 OCPViolationExample.Program.Program 片段 (2/2)
static void DrawCircle(Circle c) { Console.WriteLine("Draw a circle"); } static void DrawRectangle(Rectangle r) Console.WriteLine("Draw a rectangle");

31 OCPViolationExample.Program 片段 (1/2)
class Shape { public ShapeType type; public Shape(ShapeType t) { type = t; } class Circle : Shape { private int radius; private Point center; public Circle(int radius, Point center) :base(ShapeType.CIRCLE) { this.radius = radius; this.center = center;

32 OCPViolationExample.Program 片段 (2/2)
class Rectangle : Shape { private int width; private int height; private Point topLeft; public Rectangle(int width, int height, Point topLeft) : base(ShapeType.RECTANGLE) this.width = width; this.height = height; this.topLeft = topLeft; }

33 OCPViolationExample的主要問題
添加任何有關Shape的演算(例如,拖曳、伸縮、移動、刪除)都要重複麻煩的switch敘述 增加一種新的Shape子類別,必須修改enum敘述、各處的switch敘述,並在類別Program增加對應的Draw函式

34 綱要 繼承 修飾語protected 限制繼承 繼承架構下的建構函式呼叫 OCP:開放-封閉原理 多型 二十一點模擬程式0.1版 覆寫與隱藏

35 物件導向的關鍵技術 封裝(packaging) 繼承(inheritance) 多型(polymorphism)

36 多型 編譯時連結(compile-time binding)與執行時連結(run-time binding) 多型之要求 多型之優缺點
靜態連結(static binding)與動態連結(dynamic binding) 多型之要求 繼承階層體系 虛擬(virtual)與覆寫(override) 基礎類別之參考 多型之優缺點

37 DrawingAllShapes類別圖

38 DrawingAllShapes.Program. Program.Main() 片段(1/2)
Shape[] list = new Shape[2]; Point center; center.x = 15; center.y = 20; Point topLeft; topLeft.x = 30; topLeft.y = 40; Circle c = new Circle(2, center); Rectangle r = new Rectangle(3, 4, topLeft); Console.WriteLine("決定畫圖順序, 輸入"); Console.WriteLine("1: 圓形, 矩形"); Console.WriteLine("2: 矩形, 圓形"); int ans = int.Parse(Console.ReadLine());

39 DrawingAllShapes.Program. Program.Main() 片段(2/2)
switch (ans) { case 1: list[0] = c; list[1] = r; break; case 2: list[0] = r; list[1] = c; default: . . . } DrawAllShapes(list);

40 DrawingAllShapes.Program. Program 片段
static void DrawAllShapes(Shape[] list) { int i; for (i = 0; i < list.Length; ++i) list[i].Draw(); }

41 DrawingAllShapes.Program 片段(1/3)
class Shape { public Shape() { } virtual public void Draw() { } }

42 DrawingAllShapes.Program 片段(2/3)
class Circle : Shape { private int radius; private Point center; public Circle(int radius, Point center) this.radius = radius; this.center = center; } override public void Draw() Console.WriteLine("Draw a circle");

43 DrawingAllShapes.Program 片段(3/3)
class Rectangle : Shape { private int width; private int height; private Point topLeft; public Rectangle(int width, int height, Point topLeft) { this.width = width; this.height = height; this.topLeft = topLeft; } override public void Draw() { Console.WriteLine("Draw a rectangle");

44 練習 在程式DrawingAllShapes增加類別Triangle,使程式也能畫出三角形。

45 綱要 繼承 修飾語protected 限制繼承 繼承架構下的建構函式呼叫 OCP:開放-封閉原理 多型 二十一點模擬程式0.1版 覆寫與隱藏

46 BlackJack_0_1 類別圖

47 BlackJack_0_1.BlackJackTest 片段(1/2)
public static bool Scenario1_OK() { Card[] cards = { new Card(Suit.SPADE, 1), new Card(Suit.HEART, 11), new Card(Suit.DIAMOND, 10) }; Deck deck = new Deck(cards); Player player = new Player(); Dealer dealer = new Dealer();

48 BlackJack_0_1.BlackJackTest 片段(2/2)
player.SaveACard(deck.DealACard()); dealer.SaveACard(deck.DealACard()); return( player.GetStatus() == Status.BLACK_JACK && dealer.GetStatus() == Status.PASS); }

49 BlackJack_0_1.Game 片段 (1/6)
const int N_PLAYERS = 2; Deck deck; Player[] players = new Player[N_PLAYERS]; public Game() { players[0] = new Player("Jeng"); players[N_PLAYERS-1] = new Dealer(); }

50 BlackJack_0_1.Game 片段 (2/6)
private void Play() { int i; // 第一輪發牌 for (i = 0; i < N_PLAYERS; ++i) players[i].SaveACard( deck.DealACard()); players[i].Dump(); }

51 BlackJack_0_1.Game 片段 (3/6)
// 第二輪發牌 for (i=0; i < N_PLAYERS; ++i) { players[i].SaveACard( deck.DealACard()); players[i].Dump(); }

52 BlackJack_0_1.Game 片段 (4/6)
// 開始要牌計牌 for(i=0; i<N_PLAYERS; ++i) { while (players[i].GetStatus() == Status.PASS && players[i].WantOneMoreCard() && deck.HasMoreCard()) players[i].SaveACard(deck.DealACard()); players[i].Dump(); if(IsBlackJackOrBurst(players[i])) return; }

53 BlackJack_0_1.Game 片段 (5/6)
// 計點分勝負 Player dealer = players[N_PLAYERS-1]; for(i=0; i<N_PLAYERS-1; ++i) { if (dealer.GetTotalPoints() >= players[i].GetTotalPoints()) { Console.WriteLine( dealer.Name + "勝"+players[i].Name); } else { Console.WriteLine( players[i].Name+"勝"+dealer.Name); }

54 BlackJack_0_1.Game 片段 (6/6)
private bool IsBlackJackOrBurst( Player player) { bool isBlackJack = false; if (player.GetStatus()==Status.BLACK_JACK) { isBlackJack = true; Console.WriteLine(player.Name+ " BlackJack!!!"); } bool isBurst = false; if (player.GetStatus() == Status.BURST){ isBurst = true; Console.WriteLine(player.Name+" 爆!!!"); return (isBlackJack || isBurst);

55 BlackJack_0_1.Player 片段(1/5)
private Card[] hand = new Card[11]; private int nCards; private Status status; private int totalPoints; private string name; public Player() { nCards = 0; name = "無名氏"; }

56 BlackJack_0_1.Player 片段(2/5)
public Player(string name) { nCards = 0; this.name = name; } public string Name get { return name; }

57 BlackJack_0_1.Player 片段(3/5)
virtual public bool WantOneMoreCard() { Console.Write("要再一張牌嗎? (y/n) "); string answer = Console.ReadLine(); return (answer == "Y" || answer == "y"); }

58 BlackJack_0_1.Player 片段(4/5)
public void Dump() { int i; Console.Write(name+" 牌: "); for (i = 0; i < nCards; ++i) hand[i].Dump(); Console.Write("\t"); if ((i + 1) % 5 == 0) Console.WriteLine(); }

59 BlackJack_0_1.Player 片段(5/5)
Console.WriteLine(); Console.WriteLine(name + " 總點數: " + totalPoints); }

60 BlackJack_0_1.Dealer片段 class Dealer : Player {
public Dealer() : base("莊家") {} override public bool WantOneMoreCard() { return (base.GetTotalPoints() < 17); }

61 綱要 繼承 修飾語protected 限制繼承 繼承架構下的建構函式呼叫 OCP:開放-封閉原理 多型 二十一點模擬程式0.1版 覆寫與隱藏

62 UsingBase.Program類別圖

63 UsingBase.Program片段 (1/3)
// Define the base class class Car { public virtual void DescribeCar() System.Console.WriteLine( "Four wheels and an engine."); }

64 UsingBase.Program片段 (2/3)
// Define the derived classes class ConvertibleCar : Car { public new virtual void DescribeCar() base.DescribeCar(); Console.WriteLine( "A roof that opens up."); }

65 UsingBase.Program片段 (3/3)
class Minivan : Car { public override void DescribeCar() base.DescribeCar(); Console.WriteLine( "Carries seven people."); }

66 UsingBase.Program. Program.Main()片段 (1/2)
// new and override make no differences here Car car1 = new Car(); car1.DescribeCar(); Console.WriteLine(" "); ConvertibleCar car2 = new ConvertibleCar(); car2.DescribeCar(); Minivan car3 = new Minivan(); car3.DescribeCar();

67 UsingBase.Program. Program.Main()片段 (2/2)
// they are different in polymorphysm Car[] cars = new Car[3]; cars[0] = new Car(); cars[1] = new ConvertibleCar(); cars[2] = new Minivan(); foreach (Car vehicle in cars) { Console.WriteLine("Car object: " + vehicle.GetType()); vehicle.DescribeCar(); Console.WriteLine(" "); }

68 覆寫與隱藏 覆寫: override 隱藏: new 主要用於Polymorphism (多型) 執行時連結
只是取代基底類別同名之成員變數與方法 仍是編譯時連結

69 練習 利用偵錯器體驗了解程式UsingBase

70 綱要 預設類別System.Object LSP: Liskov替代性原理 抽象類別 DIP: 依存性反轉原理 介面 ISP: 介面分離原理
多重介面 *多重介面鑄形

71 預設類別System.Object 一致化型別 成員函式 Equals GetHashCode GetType
ReferenceEquals ToString Finalize

72 InheritingObject.Program. Program.Main()片段
Test t1 = new Test(); Test t2 = new Test(); bool isEqual = t1.Equals(t2); Console.WriteLine(t1.ToString()); Console.WriteLine("t1 與t2 相等為" + isEqual);

73 InheritingObject.Program 片段
class Test { override public string ToString() return "覆寫InheritingObject.Test"; }

74 Boxing 與 Unboxing int x = 10; Object obj = (Object) x; // boxing
int j = (int)obj; // unboxing

75 綱要 預設類別System.Object LSP: Liskov替代性原理 抽象類別 DIP: 依存性反轉原理 介面 ISP: 介面分離原理
多重介面 *多重介面鑄形

76 Liskov 代替性原理 (LSP: Liskov Substitution Principle)
Subtype must be substitutable for their base types 良好的繼承設計 對形態S之每一物件o1,有形態T的物件o2,使在所有利用型態T物件的程式P中,P的行為不因以o1代替o2而改變 破壞LSP常也破壞OCP *Robert C. Martin, Agile Software Development: Principles, Patterns, and Practices, Pearson Education, 2003

77 IS-A 關係與繼承

78 LSPViolationExample.Program 片段 (1/4)
class Rectangle { private int width; private int height; virtual public int Width set { width = value; } } virtual public int Height set { height = value; }

79 LSPViolationExample.Program 片段 (2/4)
public int Area() { return width * height; }

80 LSPViolationExample.Program 片段 (3/4)
class Square : Rectangle { override public int Width set { base.Width = value; base.Height = value; } } override public int Height

81 LSPViolationExample.Program 片段 (4/4)
class Program { static void Main(string[] args) Square s = new Square(); Test(s); } static void Test(Rectangle r) r.Width = 5; r.Height = 4; Debug.Assert(r.Area() == 20);

82 函式的進入與離開條件 進入與離開函式時的假設 Rectangle.Width的離開條件 符合LSP之子類別函式覆寫的要求
Debug.Assert( (width == value) && (height == old.height)); 符合LSP之子類別函式覆寫的要求 進入條件需等於父類別被覆寫函式之進入條件,或更寬鬆 離開條件需等於父類別被覆寫函式之離開條件,或更嚴格

83 綱要 預設類別System.Object LSP: Liskov替代性原理 抽象類別 DIP: 依存性反轉原理 介面 ISP: 介面分離原理
多重介面 *多重介面鑄形

84 抽象類別

85 AbstractClassExample.Program. Program.Main() 片段
double a = 5.0; Square sq = new Square(a); Console.WriteLine("正方形sq之面積為" + sq.Area()); Circle c = new Circle(a); Console.WriteLine("圓形c之面積為" + c.Area());

86 AbstractClassExample.Program 片段 (1/3)
public abstract class Shape { private string shape; public Shape(string shape) { this.shape = shape; Console.WriteLine("建立" + shape); } abstract public double Area();

87 AbstractClassExample.Program 片段 (2/3)
public class Square : Shape { double a; public Square(double a): base("正方形") this.a = a; } public override double Area() return a * a;

88 AbstractClassExample.Program 片段 (3/3)
public class Circle : Shape { double r; public Circle(double r): base("圓形") this.r = r; } public override double Area() return Math.PI * r * r;

89 練習 將程式DrawingAllShapes中的類別Shape改為抽象類別,並將Shape.Draw()改為抽象函式

90 抽象類別 修飾語 欄位變數 建構式 函式方法覆寫與實作

91 綱要 預設類別System.Object LSP: Liskov替代性原理 抽象類別 DIP: 依存性反轉原理 介面 ISP: 介面分離原理
多重介面 *多重介面鑄形

92 依存性反轉原理 (DIP: Dependency-Inversion Principle)
High-level modules should not depend on low-level modules. Both should depend on abstractions. Abstractions should not depend on details. Details should depend on abstractions. *Robert C. Martin, Agile Software Development: Principles, Patterns, and Practices, Pearson Education, 2003

93 一個違反DIP的例子

94 狀態圖(State Chart)

95 DIPViolationExample.Program 片段 (1/4)
public enum LampStatus { OFF = 0, ON = 1 } public enum ButtonStatus RELEASED = 0, PRESSED = 1

96 DIPViolationExample.Program 片段 (2/4)
public class Lamp { private LampStatus status = LampStatus.OFF; public LampStatus Status { get { return status; } } public void TurnOn() { status = LampStatus.ON; public void TurnOff() { status = LampStatus.OFF;

97 DIPViolationExample.Program 片段 (3/4)
public class Button { private ButtonStatus status = ButtonStatus.RELEASED; private Lamp lamp; public Button(Lamp lamp) this.lamp = lamp; } public ButtonStatus Status { get { return status; }

98 DIPViolationExample.Program 片段 (4/4)
public void Press() { if (status == ButtonStatus.RELEASED) { status = ButtonStatus.PRESSED; lamp.TurnOn(); } public void Release() { if( status == ButtonStatus.PRESSED ){ status = ButtonStatus.RELEASED; lamp.TurnOff();

99 DIPViolationExample.Program. Program.Main() 片段 (1/3)
Lamp lamp1 = new Lamp(1); Button button = new Button(lamp1); Random rand = new Random(); for (int n = 0; n <= 100; ++n) { Console.Write("time n = " + n + "\t");

100 DIPViolationExample.Program. Program.Main() 片段 (2/3)
if (rand.Next() % 2 == 1) { if (button.Status == ButtonStatus.PRESSED) button.Release(); } else button.Press();

101 DIPViolationExample.Program. Program.Main() 片段 (3/3)
if (lamp1.Status == LampStatus.OFF) { Console.WriteLine("lamp1 is off"); } else Console.WriteLine("lamp1 is on"); Console.WriteLine();

102 綱要 預設類別System.Object LSP: Liskov替代性原理 抽象類別 DIP: 依存性反轉原理 介面 ISP: 介面分離原理
多重介面 *多重介面鑄形

103 介面

104 UsingInterface.Program. Program.Main() 片段
double a = 5.0; Square sq = new Square(a); Console.WriteLine("正方形sq之面積為" + sq.Area()); Circle c = new Circle(a); Console.WriteLine("圓形c之面積為" + c.Area());

105 UsingInterface.Program片段(1/3)
interface Shape { double Area(); }

106 UsingInterface.Program片段(2/3)
public class Square : Shape { double a; public Square(double a) this.a = a; } public double Area() return a * a;

107 UsingInterface.Program片段(3/3)
public class Circle : Shape { double r; public Circle(double r) this.r = r; } public double Area() return Math.PI * r * r;

108 介面 vs. 抽象類別 (1/2) interface Shape { double Area(); }
public abstract class Shape { private string shape; public Shape(string shape) { this.shape = shape; Console.WriteLine("建立" + shape); abstract public double Area();

109 介面 vs. 抽象類別 (2/2) public class Square : Shape { . . .
public double Area() { return a * a; } public override double Area() {

110 一個符合DIP的設計

111 ButtonAndLamp.Program (1/4)
public interface SwitchableDevice { void TurnOn(); void TurnOff(); } public enum LampStatus { OFF = 0, ON = 1 public enum ButtonStatus { RELEASED = 0, PRESSED = 1

112 ButtonAndLamp.Program (2/4)
public class Lamp : SwitchableDevice { private LampStatus status = LampStatus.OFF; public LampStatus Status { get { return status; } } public void TurnOn() { status = LampStatus.ON; public void TurnOff() { status = LampStatus.OFF;

113 ButtonAndLamp.Program (3/4)
public class Button { private ButtonStatus status = ButtonStatus.RELEASED; private SwitchableDevice device; public Button(SwitchableDevice device) this.device = device; } public ButtonStatus Status { get { return status; }

114 ButtonAndLamp.Program (4/4)
public void Press() { if (status == ButtonStatus.RELEASED) { status = ButtonStatus.PRESSED; device.TurnOn(); } public void Release() { if (status == ButtonStatus.PRESSED) { status = ButtonStatus.RELEASED; device.TurnOff();

115 練習 在程式ButtonAndLamp增加類別Fan,使Button也可以控制Fan的開與關

116 綱要 預設類別System.Object LSP: Liskov替代性原理 抽象類別 DIP: 依存性反轉原理 介面 ISP: 介面分離原理
多重介面 *多重介面鑄形

117 介面分離原理 (ISP: Interface-Segregation Principle)
Clients should not be forced to depend on methods that they do not use 避免同一介面中有目的不同的多群函式宣告

118 一個違反ISP的例子

119 ISPViolationExample.Program 片段 (1/4)
interface TimerClient { void TimeOut(); } interface Door : TimerClient { void Lock(); void Unlock(); bool IsOpen(); enum DoorStatus { CLOSED = 0, OPEN = 1

120 ISPViolationExample.Program 片段 (2/4)
class Timer { private int t; private int timeout; private TimerClient client; public Timer(int timeout, TimerClient client) this.timeout = timeout; this.client = client; t = 0; }

121 ISPViolationExample.Program 片段 (3/4)
public void Advance() { ++t; if (t % timeout == 0) { client.TimeOut(); } class TimedDoor : Door { private DoorStatus status = DoorStatus.CLOSED;

122 ISPViolationExample.Program 片段 (4/4)
public bool IsOpen() { return (status == DoorStatus.OPEN); } public void Lock() { if (IsOpen()) status = DoorStatus.CLOSED; public void Unlock() { if (!IsOpen()) status = DoorStatus.OPEN; public void TimeOut() { Lock();

123 ISPViolationExample.Program. Program.Main() 片段(1/2)
TimedDoor tDoor = new TimedDoor(); int timeout = 10; Timer timer = new Timer(timeout, tDoor); int n; const int N = 20; tDoor.Unlock(); for (n = 0; n <= N; ++n) {

124 ISPViolationExample.Program. Program.Main() 片段(2/2)
if (tDoor.IsOpen()) { Console.WriteLine( "n = " + n + "\t tDoor is open"); } else "n = " + n + "\t tDoor is closed"); timer.Advance();

125 綱要 預設類別System.Object LSP: Liskov替代性原理 抽象類別 DIP: 依存性反轉原理 介面 ISP: 介面分離原理
多重介面 *多重介面鑄形

126 程式MultiInterface類別圖

127 MultiInterface.Program. Program.Main()片段
Floatplane fp = new Floatplane(); fp.Sail(); fp.Fly();

128 MultiInterface.Program片段 (1/2)
interface Plane { void Fly(); } interface Ship void Sail();

129 MultiInterface.Program片段 (2/2)
public class Floatplane : Plane, Ship { public Floatplane() { Console.WriteLine("建立水上飛機"); } public void Sail() { Console.WriteLine("水上滑行"); public void Fly() { Console.WriteLine("空中飛行");

130 練習 利用多重介面, 設計並測試一個類別Clock_Radio,兼具介面Clock之GetTime()與介面Radio之PlayMusic()功能

131 一個符合ISP的設計

132 TimedDoorSimulation.Program 片段
interface TimerClient { void TimeOut(); } interface Door { void Lock(); void Unlock(); bool IsOpen(); . . . class TimedDoor : Door, TimerClient {

133 綱要 預設類別System.Object LSP: Liskov替代性原理 抽象類別 DIP: 依存性反轉原理 介面 ISP: 介面分離原理
多重介面 *多重介面鑄形

134 程式CastMultiInterfaces類別圖

135 CastMultiInterfaces.Program. Program.Main()片段
double a = 5.0; Square sq = new Square(a); Rhombus rhomb = sq as Rhombus; Console.WriteLine( "sq的面積以菱形公式計算得"+rhomb.Area() ); if( sq is Rectangle ) { Rectangle rec = (Rectangle) sq; "sq的面積以矩形公式計算得"+rec.Area() ); }

136 CastMultiInterfaces.Program 片段(1/3)
interface Rectangle { double Area(); } interface Rhombus

137 CastMultiInterfaces.Program 片段(2/3)
public class Square : Rectangle, Rhombus { private double a; private double d; public Square(double a) this.a = a; d = Math.Sqrt(2.0) * a; }

138 CastMultiInterfaces.Program 片段(3/3)
double Rectangle.Area() { return a * a; } double Rhombus.Area() return 0.5 * d * d;


Download ppt "繼承與多型 (Inheritance and Polymorphism)"

Similar presentations


Ads by Google