![]() |
|
Design Patterns implemented on Last Chaos - Printable Version +- LCKB (https://lckb.dev/forum) +-- Forum: ** OLD LCKB DATABASE ** (https://lckb.dev/forum/forumdisplay.php?fid=109) +--- Forum: Programmers Gateway (https://lckb.dev/forum/forumdisplay.php?fid=196) +---- Forum: Coders Talk (https://lckb.dev/forum/forumdisplay.php?fid=192) +---- Thread: Design Patterns implemented on Last Chaos (/showthread.php?tid=4900) |
- Andrein95 - 04-27-2022 Wich patterns implement last chaos? Studying code I can tell that obviously Singleton and Client/Server pattern are used. Any others? - Nikolee - 05-30-2022 They use a variety of design patterns, i'ts hard to say exactly what they use and what they don't use, sometimes they implemented their own pattern to suit the case. There is also a difference in design patterns, there are: Creational design patterns (Singleton, Factory, Builder, etc.) Structural design patterns (Adapter, Decorator, etc.) Behavioral design patterns (Observer, Iterator, Interpreter, Command, etc.) If you want to learn some patterns I can advise you to start with the easy ones, like Factory/Singleton. Create a case there you would need that pattern and implement it in object oriented programming language. You can also combine some patterns, Singleton and Builder for example. |