名称 | Prototype |
结构 | ![]() |
意图 | 用原型实例指定创建对象的种类,并且通过拷贝这些原型创建新的对象。 |
适用性 |
|
1
// Prototype
2
3
// Intent: "Specify the kinds of objects to create using a prototypical
4
// instance and create new objects by copying this prototype".
5
6
// For further information, read "Design Patterns", p117, Gamma et al.,
7
// Addison-Wesley, ISBN:0-201-63361-2
8
9
/* Notes:
10
* When we are not in a position to call a constructor for an object
11
* directly, we could alternatively clone a pre-existing object
12
* (a prototype) of the same class.
13
*
14
* This results in specific class knowledge being only required in
15
* one area (to create the prototype itself), and then later cloned
16
* from code that knows nothing about the cloned prototype, except
17
* that it exposed a well-known cloning method.
18
*
19
*/
20
21
namespace Prototype_DesignPattern
22
{
23
using System;
24
25
// Objects which are to work as prototypes must be based on classes which
26
// are derived from the abstract prototype class
27
abstract class AbstractPrototype
28
{
29
abstract public AbstractPrototype CloneYourself();
30
}
31
32
// This is a sample object
33
class MyPrototype : AbstractPrototype
34
{
35
override public AbstractPrototype CloneYourself()
36
{
37
return ((AbstractPrototype)MemberwiseClone());
38
}
39
// lots of other functions go here!
40
}
41
42
// This is the client piece of code which instantiate objects
43
// based on a prototype.
44
class Demo
45
{
46
private AbstractPrototype internalPrototype;
47
48
public void SetPrototype(AbstractPrototype thePrototype)
49
{
50
internalPrototype = thePrototype;
51
}
52
53
public void SomeImportantOperation()
54
{
55
// During Some important operation, imagine we need
56
// to instantiate an object - but we do not know which. We use
57
// the predefined prototype object, and ask it to clone itself.
58
59
AbstractPrototype x;
60
x = internalPrototype.CloneYourself();
61
// now we have two instances of the class which as as a prototype
62
}
63
}
64
65
/// <summary>
66
/// Summary description for Client.
67
/// </summary>
68
public class Client
69
{
70
public static int Main(string[] args)
71
{
72
Demo demo = new Demo();
73
MyPrototype clientPrototype = new MyPrototype();
74
demo.SetPrototype(clientPrototype);
75
demo.SomeImportantOperation();
76
77
return 0;
78
}
79
}
80
}
81

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
