CSharp: Composite Pattern in donet 6

 

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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
     /// <summary>
    /// 组合模式 Composite Pattern 亦称: 对象树、Object Tree、Composite Pattern
    /// </summary>
    public abstract class Gift
    {
 
        /// <summary>
        ///
        /// </summary>
        protected readonly string _description;
        /// <summary>
        ///
        /// </summary>
        protected decimal _price;
        /// <summary>
        ///
        /// </summary>
        /// <param name="description"></param>
        /// <param name="price"></param>
        protected Gift(string description, decimal price)
        {
            _description = description;
            _price = price;
        }
        /// <summary>
        ///
        /// </summary>
        /// <returns></returns>
        public abstract decimal CalculatePrice();
    }
 
 
   /// <summary>
    /// 组合模式 Composite Pattern 亦称: 对象树、Object Tree、Composite Pattern
    /// </summary>
    public interface IGiftOperations
    {
 
        /// <summary>
        ///
        /// </summary>
        /// <param name="gift"></param>
        void Add(Gift gift);
        /// <summary>
        ///
        /// </summary>
        /// <param name="gift"></param>
        void Remove(Gift gift);
    }
 
 /// <summary>
    /// 组合模式 Composite Pattern 亦称: 对象树、Object Tree、Composite Pattern
    /// </summary>
    public class CompositeGift : Gift, IGiftOperations
    {
        /// <summary>
        /// This collection can store simple as well as composite gifts.
        /// </summary>
        private readonly List<Gift> _gifts;
        /// <summary>
        ///
        /// </summary>
        /// <param name="description"></param>
        public CompositeGift(string description)
            : base(description, 0)
        {
            _gifts = new List<Gift>();
        }
        /// <summary>
        ///
        /// </summary>
        /// <param name="gift"></param>
        public void Add(Gift gift) =>
            _gifts.Add(gift);
        /// <summary>
        ///
        /// </summary>
        /// <param name="gift"></param>
        public void Remove(Gift gift) =>
            // Consider using HashSet or Dictionary if you need remove an item from a collection.
            _gifts.Remove(gift);
        /// <summary>
        ///
        /// </summary>
        /// <returns></returns>
        public override decimal CalculatePrice()
        {
            Console.WriteLine($"'{_description}' 包含以下产品及价格:");
            _price = _gifts.Sum(gift => gift.CalculatePrice());
 
            return _price;
        }
    }
 
 
/// <summary>
    /// 组合模式 Composite Pattern 亦称: 对象树、Object Tree、Composite Pattern
    /// </summary>
    public class SimpleGift : Gift
    {
 
        /// <summary>
        ///
        /// </summary>
        /// <param name="description"></param>
        /// <param name="price"></param>
        public SimpleGift(string description, decimal price)
            : base(description, price)
        {
        }
        /// <summary>
        ///
        /// </summary>
        /// <returns></returns>
        public override decimal CalculatePrice()
        {
            Console.WriteLine($"'{_description}' with the price of {_price:C}");
            return _price;
        }
    }
 
 
 /// <summary>
    ///  组合模式 Composite Pattern 亦称: 对象树、Object Tree、Composite Pattern
    /// </summary>
    public static class GiftExecutor
    {
 
        /// <summary>
        /// /
        /// </summary>
        public static void Execute()
        {
            ConsoleExtension.WriteSeparator("组合模式 Composite Pattern:  Gift demo");
 
            var smartWatchGift = new SimpleGift("智能手表 Smart watch", 200);
            var smartWatchPrice = smartWatchGift.CalculatePrice();
            Console.WriteLine($"智能手表礼品总价: {smartWatchPrice:C}");
 
            Console.WriteLine();
 
            var familyGift = new CompositeGift("家庭的礼物");
            var dadsGift = new SimpleGift("钓鱼竿Fishing rod", 50);
            var momsGift = new SimpleGift("项链Necklace", 80);
            var childrenGift = new CompositeGift("孩子们的礼物Children gift");
            childrenGift.Add(new SimpleGift("士兵玩具Soldier toy", 40));
            childrenGift.Add(new SimpleGift("芭比玩具Barbie toy", 50));
 
            familyGift.Add(dadsGift);
            familyGift.Add(momsGift);
            familyGift.Add(childrenGift);
 
            var familyGiftPrice = familyGift.CalculatePrice();
            Console.WriteLine($"家庭礼物总价: {familyGiftPrice:C}");
        }
    }

  调用:、

1
2
Geovin.Du.DuComposite.DuGift.GiftExecutor.Execute();
Console.WriteLine();

  

输出:

1
2
3
4
5
6
7
8
9
10
11
12
组合模式 Composite Pattern:  Gift demo
--------------------------------------------------
'智能手表 Smart watch' with the price of ¥200.00
智能手表礼品总价: ¥200.00
 
'家庭的礼物' 包含以下产品及价格::
'钓鱼竿Fishing rod' with the price of ¥50.00
'项链Necklace' with the price of ¥80.00
'孩子们的礼物Children gift' 包含以下产品及价格::
'士兵玩具Soldier toy' with the price of ¥40.00
'芭比玩具Barbie toy' with the price of ¥50.00
家庭礼物总价: ¥220.00

  

 

posted @   ®Geovin Du Dream Park™  阅读(18)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 25岁的心里话
· 闲置电脑爆改个人服务器(超详细) #公网映射 #Vmware虚拟网络编辑器
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· 零经验选手,Compose 一天开发一款小游戏!
· 一起来玩mcp_server_sqlite,让AI帮你做增删改查!!
历史上的今天:
2009-11-14 Excel 工作表,单元格破解密码宏
< 2025年3月 >
23 24 25 26 27 28 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 1 2 3 4 5
点击右上角即可分享
微信分享提示