cpp: Strategy Pattern II
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 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 | // Gold.h : 此文件包含 "Gold" 类。策略模式 Strategy Pattern C++ 14 // 2023年5月1日 涂聚文 Geovin Du Visual Studio 2022 edit. #pragma once //#ifndef GOLD_H //#define GOLD_H #ifndef _GOLD_ #define _GOLD_ #include <iostream> #include <sstream> #include <vector> #include "StrategyProfile.h" using namespace std; namespace DuJewelryStrategyPattern { ////增加策略 enum ItemAddlife { LF_Corporation, LF_Commerce, LF_Shop, }; class StrategyProfile; //类前向声明 /// <summary> /// 黄金 父类 /// </summary> class Gold { public : Gold( int operation, int intellectual, int resource) :Poperation(operation), Pintellectual(intellectual), Presource(resource) {} virtual ~Gold() {} //public: // void UseItem(ItemAddlife djtype) // // { // if (djtype == LF_Corporation) // // { // Poperation += 200; //补充200点生命值 // //if (主角) // //{ // // 停止状态,也 // //} // //if (主角状态) // //{ // // Poperation += 400; //额外再补充400点 // // Pintellectual += 200; //也再补充200点 // //} // } // else if (djtype == LF_Commerce ) // // { // Poperation += 300; //补充300点生命值 // } // else if (djtype == LF_Shop) // // { // Poperation += 500; //补充500点生命 // } // //其他的一些判断逻辑,略...... // } public : /// <summary> /// /// </summary> /// <param name="strategy"></param> void SetStrategyProfile(StrategyProfile* strategy); // /// <summary> /// / /// </summary> void UseItem(); /// <summary> /// 获取运营管理 /// </summary> /// <returns></returns> int GetOperation(); /// <summary> /// 设置运营管理 /// </summary> /// <param name="operation"></param> void SetOperation( int operation); // private : /// <summary> /// /// </summary> StrategyProfile* strategyProfile = nullptr ; //C++11中支持这样初始化 protected : /// <summary> /// 运营管理 operation /// </summary> int Poperation; /// <summary> /// 智能技术 intellectual technology /// </summary> int Pintellectual; /// <summary> /// 资源配置 (整合)resource allocation /// </summary> int Presource; }; } #endif // Gold.cpp 此文件包含 "Gold" 类。策略模式 Strategy Pattern C++ 14 // 2023年5月1日 涂聚文 Geovin Du Visual Studio 2022 edit. #include <iostream> #include "Gold.h" #include "StrategyProfile.h" using namespace std; namespace DuJewelryStrategyPattern { /// <summary> /// 设置组合使用的策略 /// </summary> /// <param name="strategy"></param> void Gold::SetStrategyProfile(StrategyProfile* strategy) { strategyProfile = strategy; } //1例用法 /// <summary> /// 使用组合策略 /// </summary> void Gold::UseItem() { strategyProfile->UseItem( this ); //this } /** 2 例用法 /// <summary> /// 使用组合策略 /// </summary> void Gold::UseItem() { strategyProfile->UseItem(); //this } */ /// <summary> /// 获取运营管理 /// </summary> /// <returns></returns> int Gold::GetOperation() { return Poperation; } /// <summary> /// 设置运营管理 /// </summary> /// <param name="operation"></param> void Gold::SetOperation( int operation) { Poperation = operation; } } // StrategyProfile.h : 此文件包含 "StrategyProfile" 类。策略模式 Strategy Pattern C++ 14 // 2023年5月1日 涂聚文 Geovin Du Visual Studio 2022 edit. #pragma once //#ifndef STRATEGYPROFILE_H //#define STRATEGYPROFILE_H #ifndef _STRATEGYPROFILE_ #define _STRATEGYPROFILE_ #include <iostream> #include <sstream> #include <vector> #include "Gold.h" using namespace std; namespace DuJewelryStrategyPattern { class Gold; //类前向声明 /// <summary> /// 策略组合 父类 策略类的父类 /// </summary> class StrategyProfile { private : public : /** 1 例用法*/ /// <summary> /// /// </summary> /// <param name="mainobj"></param> virtual void UseItem(Gold* mainobj)=0; /*2 例用法 /// <summary> /// /// </summary> virtual void UseItem() = 0; */ /// <summary> /// /// </summary> /// <param name="mainobj"></param> //void DuUseItem(Gold* mainobj); /// <summary> /// /// </summary> virtual ~StrategyProfile() {} }; } #endif // StrategyMarketFocus.h : 此文件包含 "StrategyMarketFocus" 类。策略模式 Strategy Pattern C++ 14 // 2023年5月1日 涂聚文 Geovin Du Visual Studio 2022 edit. #pragma once #ifndef STRATEGYMARKETFOCUS_H #define STRATEGYMARKETFOCUS_H #include <iostream> #include <sstream> #include <vector> #include "Gold.h" #include "StrategyProfile.h" using namespace std; namespace DuJewelryStrategyPattern { /// <summary> ///子类 专一化战略(Market focus/focus strategy),也称集中化战略(集中策略)、目标集中战略、目标聚集战略、目标聚集性战略 /// </summary> class StrategyMarketFocus : public StrategyProfile { public : /// <summary> /// 专一化战略 /// </summary> /// <param name="mainobj"></param> virtual void UseItem(Gold* mainobj) { mainobj->SetOperation(mainobj->GetOperation() + 500); //补充500点生命值 int operatin = mainobj->GetOperation(); cout << "执行专一化战略,营收增长" + to_string(operatin) + "%" << endl; } }; } #endif // StrategyDifferentiation.h : 此文件包含 "StrategyDifferentiation" 类。策略模式 Strategy Pattern C++ 14 // 2023年5月1日 涂聚文 Geovin Du Visual Studio 2022 edit. #pragma once #ifndef STRATEGYDIFFERENTIATION_H #define STRATEGYDIFFERENTIATION_H #include <iostream> #include <sstream> #include <vector> #include "Gold.h" #include "StrategyProfile.h" using namespace std; namespace DuJewelryStrategyPattern { /// <summary> ///子类 /// 差异化战略(differentiation/differentiation strategy) /// </summary> class StrategyDifferentiation : public StrategyProfile { public : /// <summary> /// /// </summary> /// <param name="mainobj"></param> virtual void UseItem(Gold* mainobj) { mainobj->SetOperation(mainobj->GetOperation() + 300); //补充300点 int operatin = mainobj->GetOperation(); cout << "执行差异化战略,营收增长" +to_string(operatin)+ "%" << endl; } }; } #endif // StrategyOverallCost.h : 此文件包含 "StrategyOverallCost" 类。策略模式 Strategy Pattern C++ 14 // 2023年5月1日 涂聚文 Geovin Du Visual Studio 2022 edit. #pragma once #ifndef STRATEGYOVERALLCOST_H #define STRATEGYOVERALLCOST_H #include <iostream> #include <sstream> #include <vector> #include "Gold.h" #include "StrategyProfile.h" using namespace std; namespace DuJewelryStrategyPattern { /// <summary> /// 子类 成本领先战略(Overall cost leadership,也称低成本战略) /// </summary> class StrategyOverallCost: public StrategyProfile { public : /// <summary> /// 成本领先战略 /// </summary> /// <param name="mainobj"></param> virtual void UseItem(Gold* mainobj) { mainobj->SetOperation(mainobj->GetOperation() + 200); //补充200点 int operatin = mainobj->GetOperation(); cout << "执行成本领先战略,营收增长" + to_string(operatin) + "%" << endl; } }; } #endif // GeovinDu.cpp : 此文件包含 "GeovinDu" 类。策略模式 Strategy Pattern C++ 14 // 2023年5月1日 涂聚文 Geovin Du Visual Studio 2022 edit. #include "GeovinDu.h" #include <iostream> #include <sstream> #include <vector> #include "Gold.h" #include "GoldShop.h" #include "GoldCommerce.h" #include "GoldCorporation.h" #include "SupplierDiamond.h" #include "SupplierGold.h" #include "SupplierJade.h" #include "SupplierPearl.h" #include "SupplierIncrement.h" #include "StrategyProfile.h" #include "StrategyDifferentiation.h" #include "StrategyMarketFocus.h" #include "StrategyOverallCost.h" using namespace std; using namespace DuJewelryStrategyPatternUnabstract; namespace DuJewelryStrategyPattern { /// <summary> /// /// </summary> void GeovinDu::displayUnabstract() { //Gold* prole_war = new SupplierIncrement(1000, 0, 200);//这没有采用工厂模式,如果主角很多,可以考虑采用工厂模式创建对象 //prole_war->UseItem(LF_Corporation); //delete prole_war; //创建主角 Gold* prole_shop = new GoldShop(1000, 0, 200); //成本策略1 //StrategyProfile* strateby; //StrategyOverallCost d; //strateby = &d; /* 1 例 问题: 无法实例化抽象类 已解决*/ StrategyProfile* strateby = new StrategyOverallCost(); //创建成本策略 prole_shop->SetStrategyProfile(strateby); //主角设置策略 prole_shop->UseItem(); //主角 //差异化战略 StrategyProfile* strateby2 = new StrategyDifferentiation(); //创建差异化战略 prole_shop->SetStrategyProfile(strateby2); //主角设置策略 prole_shop->UseItem(); //主角用策略 //释放资源 delete strateby; delete strateby2; delete prole_shop; // 2 例------------------------------ /* DuJewelryStrategyPatternUnabstract::SupplierGold* pobjud = new DuJewelryStrategyPatternUnabstract::SupplierGold(); DuJewelryStrategyPatternUnabstract::SupplierIncrement* pobjwar = new DuJewelryStrategyPatternUnabstract::SupplierIncrement(); pobjwar->createSupplierGold(pobjud); //创建一个黄金供应商 DuJewelryStrategyPatternUnabstract::SupplierDiamond* pobjelm = new DuJewelryStrategyPatternUnabstract::SupplierDiamond(); pobjwar->createSupplierDiamond(pobjelm);//创建一个钻石供应商 //资源释放 delete pobjwar; delete pobjud; delete pobjelm; */ } } |
调用:
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 | // ConsoleDuStrategyPattern.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。 // 策略模式 Strategy Pattern // // 2023年5月1日 涂聚文 Geovin Du Visual Studio 2022 edit. // #define _UNICODE #include <iostream> #include "GeovinDu.h" #include "SupplierIncrement.h" #ifdef _DEBUG //只在Debug(调试)模式下 #ifndef DEBUG_NEW #define DEBUG_NEW new(_NORMAL_BLOCK,__FILE__,__LINE__) //重新定义new运算符 #define new DEBUG_NEW #endif #endif //#include <boost/type_index.hpp> using namespace std; //#pragma warning(disable : 4996) using namespace DuJewelryStrategyPattern; using namespace DuJewelryStrategyPatternUnabstract; int main() { std::cout << "Hello World!!Programa Olá Mundo!涂聚文 Geovin Du\n" ; GeovinDu geovin; geovin.displayUnabstract(); system ( "pause" ); return 0; } // 运行程序: Ctrl + F5 或调试 >“开始执行(不调试)”菜单 // 调试程序: F5 或调试 >“开始调试”菜单 // 入门使用技巧: // 1. 使用解决方案资源管理器窗口添加/管理文件 // 2. 使用团队资源管理器窗口连接到源代码管理 // 3. 使用输出窗口查看生成输出和其他消息 // 4. 使用错误列表窗口查看错误 // 5. 转到“项目”>“添加新项”以创建新的代码文件,或转到“项目”>“添加现有项”以将现有代码文件添加到项目 // 6. 将来,若要再次打开此项目,请转到“文件”>“打开”>“项目”并选择 .sln 文件 #define UNICODE |
输出:
1 2 3 4 | Hello World!!Programa Olá Mundo!涂聚文 Geovin Du 执行成本领先战略,营收增长1200% 执行差异化战略,营收增长1500% 请按任意键继续. . . |
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 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 | // Gold.h : 此文件包含 "Gold" 类。策略模式 Strategy Pattern C++ 14 // 2023年5月1日 涂聚文 Geovin Du Visual Studio 2022 edit. #pragma once //#ifndef GOLD_H //#define GOLD_H #ifndef _GOLD_ #define _GOLD_ #include <iostream> #include <sstream> #include <vector> #include "StrategyProfile.h" using namespace std; namespace DuJewelryStrategyPattern { ////增加策略 enum ItemAddlife { /// <summary> /// 黄金公司 /// </summary> LF_Corporation, /// <summary> /// 商贸商会 /// </summary> LF_Commerce, /// <summary> /// 店舖 /// </summary> LF_Shop, }; /// <summary> /// /// </summary> enum ItemOperating { /// <summary> /// /// </summary> colse, /// <summary> /// /// </summary> bussines, }; class StrategyProfile; //类前向声明 /// <summary> /// 黄金 父类 /// </summary> class Gold { public : Gold( int operation, int intellectual, int resource) :Poperation(operation), Pintellectual(intellectual), Presource(resource) {} virtual ~Gold() {} public : /// <summary> /// /// </summary> /// <param name="djtype"></param> /// <param name="operate"></param> void UseItem(ItemAddlife djtype, ItemOperating operate) // { if (djtype == LF_Corporation) //类型: { int oldp = Poperation; int oldi = Pintellectual; int oldr = Presource; Poperation += 200; //补充200点 poisoning if (operate ==colse) { // cout << "黄金公司歇业中,为了更好的准备迎接新的增长点!" << endl; } if (operate ==bussines) //musth { Poperation += 400; //再补充400点 Pintellectual += 200; //也再补充200点 cout << "黄金公司营业中,运营增长:(" +to_string(oldp) + ")" +to_string(Poperation - oldp)+ ",智能技术增长:(" + to_string(oldi) + ")" +to_string(Pintellectual - oldi)+ ",资源增长:(" + to_string(oldr) + ")" +to_string(Presource - oldr) << endl; } } else if (djtype == LF_Commerce ) // { int oldp = Poperation; int oldi = Pintellectual; int oldr = Presource; if (operate ==colse) { cout << "商贸商会歇业中,为了更好的准备迎接新的增长点!" << endl; } if (operate ==bussines) { Poperation += 300; //补充300点 cout << "商贸商会营业中,运营增长:(" + to_string(oldp) + ")" + to_string(Poperation- oldp) + ",智能技术增长:(" + to_string(oldi) + ")" + to_string(Pintellectual-oldi) + ",资源增长:(" + to_string(oldr) + ")" + to_string(Presource-oldr) << endl; } } else if (djtype == LF_Shop) // { int oldp = Poperation; int oldi = Pintellectual; int oldr = Presource; if (operate ==colse) { cout << "店舖歇业中,为了更好的准备迎接新的增长点!" << endl; } if (operate ==bussines) { Poperation += 500; //补充500点 cout << "店舖营业中,运营增长:(" + to_string(oldp) + ")" + to_string(Poperation- oldp) + ",智能技术增长:(" + to_string(oldi) + ")" + to_string(Pintellectual - oldi) + ",资源增长:(" + to_string(oldr) + ")" + to_string(Presource - oldr) << endl; } } //其他的一些判断逻辑,略...... } public : /// <summary> /// /// </summary> /// <param name="strategy"></param> void SetStrategyProfile(StrategyProfile* strategy); //设置道具使用的策略 /// <summary> /// / /// </summary> void UseItem(); // /// <summary> /// 获取运营管理 /// </summary> /// <returns></returns> int GetOperation(); /// <summary> /// 设置运营管理 /// </summary> /// <param name="operation"></param> void SetOperation( int operation); // private : /// <summary> /// /// </summary> StrategyProfile* strategyProfile = nullptr ; //C++11中支持这样初始化 protected : /// <summary> /// 运营管理 operation /// </summary> int Poperation; /// <summary> /// 智能技术 intellectual technology /// </summary> int Pintellectual; /// <summary> /// 资源配置 (整合)resource allocation /// </summary> int Presource; }; } #endif // GeovinDu.cpp : 此文件包含 "GeovinDu" 类。策略模式 Strategy Pattern C++ 14 // 2023年5月1日 涂聚文 Geovin Du Visual Studio 2022 edit. #include "GeovinDu.h" #include <iostream> #include <sstream> #include <vector> #include "Gold.h" #include "GoldShop.h" #include "GoldCommerce.h" #include "GoldCorporation.h" #include "SupplierDiamond.h" #include "SupplierGold.h" #include "SupplierJade.h" #include "SupplierPearl.h" #include "SupplierIncrement.h" #include "StrategyProfile.h" #include "StrategyDifferentiation.h" #include "StrategyMarketFocus.h" #include "StrategyOverallCost.h" using namespace std; using namespace DuJewelryStrategyPatternUnabstract; namespace DuJewelryStrategyPattern { class Gold; /// <summary> /// /// </summary> void GeovinDu::displayUnabstract() { Gold* prole_cor = new GoldCorporation(1000,20,500); //这没有采用工厂模式,如果主角很多,可以考虑采用工厂模式创建对象 prole_cor->UseItem(LF_Corporation,colse); delete prole_cor; //创建主角 Gold* prole_shop = new GoldShop(1000, 0, 200); prole_shop->UseItem(LF_Shop, bussines); Gold* prole_Com = new GoldCommerce(8000, 20, 400); //成本策略1 //StrategyProfile* strateby; //StrategyOverallCost d; //strateby = &d; /* 1 例 问题: 无法实例化抽象类 已解决*/ StrategyProfile* strateby = new StrategyOverallCost(); //创建成本策略 prole_shop->SetStrategyProfile(strateby); //主角设置大还丹策略,准备吃大还丹 prole_shop->UseItem(); //主角吃大还丹 //差异化战略 StrategyProfile* strateby2 = new StrategyDifferentiation(); //创建差异化战略 prole_shop->SetStrategyProfile(strateby2); //主角设置策略 prole_shop->UseItem(); //主角用策略 //释放资源 delete strateby; delete strateby2; delete prole_shop; // 2 例------------------------------ /* DuJewelryStrategyPatternUnabstract::SupplierGold* pobjud = new DuJewelryStrategyPatternUnabstract::SupplierGold(); DuJewelryStrategyPatternUnabstract::SupplierIncrement* pobjwar = new DuJewelryStrategyPatternUnabstract::SupplierIncrement(); pobjwar->createSupplierGold(pobjud); //创建一个黄金供应商 DuJewelryStrategyPatternUnabstract::SupplierDiamond* pobjelm = new DuJewelryStrategyPatternUnabstract::SupplierDiamond(); pobjwar->createSupplierDiamond(pobjelm);//创建一个钻石供应商 //资源释放 delete pobjwar; delete pobjud; delete pobjelm; */ } } |
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 | // GeovinDu.cpp : 此文件包含 "GeovinDu" 类。策略模式 Strategy Pattern C++ 14 // 2023年5月1日 涂聚文 Geovin Du Visual Studio 2022 edit. #include "GeovinDu.h" #include <iostream> #include <sstream> #include <vector> #include "Gold.h" #include "GoldShop.h" #include "GoldCommerce.h" #include "GoldCorporation.h" #include "SupplierDiamond.h" #include "SupplierGold.h" #include "SupplierJade.h" #include "SupplierPearl.h" #include "SupplierIncrement.h" #include "StrategyProfile.h" #include "StrategyDifferentiation.h" #include "StrategyMarketFocus.h" #include "StrategyOverallCost.h" using namespace std; using namespace DuJewelryStrategyPatternUnabstract; namespace DuJewelryStrategyPattern { class Gold; /// <summary> /// /// </summary> void GeovinDu::displayUnabstract() { // Gold* prole_cor = new GoldCorporation(1000,20,500); //这没有采用工厂模式,如果主角很多,可以考虑采用工厂模式创建对象 //创建主角 Gold* prole_shop = new GoldShop(1000, 0, 200); //delete prole_shop; Gold* prole_Com = new GoldCommerce(8000, 20, 400); //prole_Com->UseItem(LF_Commerce, bussines); //成本策略1 //StrategyProfile* strateby; //StrategyOverallCost d; //strateby = &d; /* 1 例 问题: 无法实例化抽象类 已解决*/ StrategyProfile* strateby = new StrategyOverallCost(); //创建成本策略 prole_cor->SetStrategyProfile(strateby); //主角设置策略,准备 prole_cor->UseItem(LF_Corporation, colse); prole_cor->UseItem(); //主角 //差异化战略 StrategyProfile* strateby2 = new StrategyDifferentiation(); //创建差异化战略 prole_shop->SetStrategyProfile(strateby2); //主角设置策略 prole_shop->UseItem(LF_Shop, bussines); prole_shop->UseItem(); //主角用策略 StrategyProfile* strateby3 = new StrategyMarketFocus(); prole_Com->SetStrategyProfile(strateby3); prole_Com->UseItem(LF_Commerce, bussines); prole_Com->UseItem(); // //释放资源 delete strateby; delete strateby2; delete strateby3; delete prole_shop; delete prole_cor; delete prole_Com; // 2 例------------------------------/**/ DuJewelryStrategyPatternUnabstract::SupplierGold* pobjud = new DuJewelryStrategyPatternUnabstract::SupplierGold(); DuJewelryStrategyPatternUnabstract::SupplierIncrement* pobdu = new DuJewelryStrategyPatternUnabstract::SupplierIncrement(); pobdu->createSupplierGold(pobjud); //创建一个黄金供应商 DuJewelryStrategyPatternUnabstract::SupplierDiamond* pobjelm = new DuJewelryStrategyPatternUnabstract::SupplierDiamond(); pobdu->createSupplierDiamond(pobjelm); //创建一个钻石供应商 DuJewelryStrategyPatternUnabstract::SupplierJade* pobjade = new DuJewelryStrategyPatternUnabstract::SupplierJade(); pobdu->createSupplierJade(pobjade); //创建一个玉供应商 DuJewelryStrategyPatternUnabstract::SupplierPearl* pobpearl = new DuJewelryStrategyPatternUnabstract::SupplierPearl(); pobdu->createSupplierPearl(pobpearl); //创建一个珍珠供应商 //资源释放 delete pobdu; delete pobjud; delete pobjelm; delete pobjade; delete pobpearl; } } |
哲学管理(学)人生, 文学艺术生活, 自动(计算机学)物理(学)工作, 生物(学)化学逆境, 历史(学)测绘(学)时间, 经济(学)数学金钱(理财), 心理(学)医学情绪, 诗词美容情感, 美学建筑(学)家园, 解构建构(分析)整合学习, 智商情商(IQ、EQ)运筹(学)生存.---Geovin Du(涂聚文)
分类:
Cpp programming
标签:
desgin patterns
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 25岁的心里话
· 闲置电脑爆改个人服务器(超详细) #公网映射 #Vmware虚拟网络编辑器
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· 零经验选手,Compose 一天开发一款小游戏!
· 一起来玩mcp_server_sqlite,让AI帮你做增删改查!!