当前位置: 首页 > news >正文

网站开发公司资质网站演示代码

网站开发公司资质,网站演示代码,asp.net网站开发教程,可以用wordpress的云1. Adapter(适配器模式) 适配器模式是一种结构型设计模式#xff0c;它允许将一个类的接口转换成客户端所期望的另一个接口。这种模式通常用于解决接口不兼容的情况#xff0c;使得原本由于接口不匹配而无法工作的类可以一起工作。 在 C 中#xff0c;适配器模式可以通过类适…1. Adapter(适配器模式) 适配器模式是一种结构型设计模式它允许将一个类的接口转换成客户端所期望的另一个接口。这种模式通常用于解决接口不兼容的情况使得原本由于接口不匹配而无法工作的类可以一起工作。 在 C 中适配器模式可以通过类适配器和对象适配器两种方式来实现。 1.1 类适配器 使用多重继承实现适配器类使其既继承目标接口又继承被适配的类。 以下是模式示例 #include iostream// 目标接口 class Target { public:virtual void request() 0; };// 被适配的类 class Adaptee { public:void specificRequest() {std::cout Specific request from Adaptee std::endl;} };// 类适配器继承目标接口和被适配类 class Adapter : public Target, private Adaptee { public:void request() override {specificRequest(); // 调用被适配类的方法} };int main() {Target* target new Adapter();target-request();delete target;return 0; }1.2 对象适配器 使用对象组合实现适配器类使其持有被适配的对象实例。 以下是模式示例  #include iostream// 目标接口 class Target { public:virtual void request() 0; };// 被适配的类 class Adaptee { public:void specificRequest() {std::cout Specific request from Adaptee std::endl;} };// 对象适配器持有被适配类的对象实例 class Adapter : public Target { private:Adaptee* adaptee;public:Adapter(Adaptee* adaptee) : adaptee(adaptee) {}void request() override {adaptee-specificRequest(); // 调用被适配类的方法} };int main() {Adaptee* adaptee new Adaptee();Target* target new Adapter(adaptee);target-request();delete target;delete adaptee;return 0; }无论是类适配器还是对象适配器都可以实现将目标接口和被适配类进行适配使得客户端可以统一调用目标接口的方法而无需直接与被适配类打交道。 2. Decorator(装饰器模式) 装饰器模式是一种结构型设计模式它允许向现有对象添加新功能同时又不改变其结构。这种模式通过创建包装类装饰器来实现在包装类中包含一个指向被包装对象的引用并且实现与被包装对象相同的接口。 2.1 使用继承实现装饰器模式 以下是模式示例 #include iostream// 抽象组件 class Component { public:virtual void operation() 0; };// 具体组件 class ConcreteComponent : public Component { public:void operation() override {std::cout Concrete Component operation std::endl;} };// 抽象装饰器 class Decorator : public Component { protected:Component* component;public:Decorator(Component* comp) : component(comp) {}void operation() override {if (component ! nullptr) {component-operation();}} };// 具体装饰器A class ConcreteDecoratorA : public Decorator { public:ConcreteDecoratorA(Component* comp) : Decorator(comp) {}void operation() override {Decorator::operation();addBehaviorA();}void addBehaviorA() {std::cout Added behavior A std::endl;} };// 具体装饰器B class ConcreteDecoratorB : public Decorator { public:ConcreteDecoratorB(Component* comp) : Decorator(comp) {}void operation() override {Decorator::operation();addBehaviorB();}void addBehaviorB() {std::cout Added behavior B std::endl;} };int main() {Component* component new ConcreteComponent();Component* decoratedA new ConcreteDecoratorA(component);Component* decoratedB new ConcreteDecoratorB(decoratedA);decoratedB-operation();delete decoratedB;delete decoratedA;delete component;return 0; }2.2 使用组合实现装饰器模式 当使用组合实现装饰器模式时装饰器类将持有一个对被装饰对象的引用并在其基础上添加额外的功能 #include iostream// 抽象组件 class Component { public:virtual void operation() 0; };// 具体组件 class ConcreteComponent : public Component { public:void operation() override {std::cout Concrete Component operation std::endl;} };// 抽象装饰器 class Decorator : public Component { protected:Component* component;public:Decorator(Component* comp) : component(comp) {}void operation() override {if (component ! nullptr) {component-operation();}} };// 具体装饰器A class ConcreteDecoratorA : public Decorator { public:ConcreteDecoratorA(Component* comp) : Decorator(comp) {}void operation() override {Decorator::operation();addBehaviorA();}void addBehaviorA() {std::cout Added behavior A std::endl;} };// 具体装饰器B class ConcreteDecoratorB : public Decorator { public:ConcreteDecoratorB(Component* comp) : Decorator(comp) {}void operation() override {Decorator::operation();addBehaviorB();}void addBehaviorB() {std::cout Added behavior B std::endl;} };int main() {Component* component new ConcreteComponent();Decorator* decoratedA new ConcreteDecoratorA(component);Decorator* decoratedB new ConcreteDecoratorB(decoratedA);decoratedB-operation();delete decoratedB;delete decoratedA;delete component;return 0; }3. Proxy(代理模式) 代理模式是一种结构型设计模式它允许通过一个代理对象控制对另一个对象的访问。代理模式可以用于各种场景例如远程代理、虚拟代理、保护代理等以实现对目标对象的访问控制、延迟加载、缓存等功能。 在 C 中代理模式可以通过以下方式实现 ①. 虚拟代理Virtual Proxy延迟加载对象在需要时才真正创建对象。         ②. 保护代理Protection Proxy控制对象的访问权限提供额外的安全性。         ③. 远程代理Remote Proxy在不同地址空间中代表对象实现远程通信。 以下是模式示例   #include iostream #include string// 抽象主题 class Subject { public:virtual void request() 0; };// 具体主题 class RealSubject : public Subject { public:void request() override {std::cout Real Subject request std::endl;} };// 代理类 class Proxy : public Subject { private:RealSubject* realSubject;bool initialized;public:Proxy() : realSubject(nullptr), initialized(false) {}void request() override {if (!initialized) {lazyInit();}realSubject-request();}void lazyInit() {std::cout Proxy initializing... std::endl;realSubject new RealSubject();initialized true;} };int main() {Proxy proxy;proxy.request();return 0; }在上面的示例中Subject 是抽象主题类定义了对实际主题进行操作的接口。RealSubject 是具体主题类实现了真正的业务逻辑。Proxy 是代理类延迟初始化 RealSubject 对象并在需要时调用其方法。 当运行主函数时代理对象首先进行了延迟初始化虚拟代理的特性然后通过代理对象调用实际主题的方法实现了对实际主题的代理访问。 4. Composite(组合模式) 组合模式是一种结构型设计模式它允许将对象组合成树形结构以表示“部分-整体”的层次关系。组合模式使得客户端可以统一处理单个对象和对象组合从而使得客户端代码更加简单且具有一致性。 在 C 中组合模式通常涉及以下几个角色 ①. Component组件是组合中的对象声明接口在适当的情况下实现所有类共有接口的缺省行为。可以是抽象类或接口。 ②. Leaf叶子节点是组合中的叶节点对象它没有子节点。 ③. Composite复合节点是组合中的复合对象它有子节点。通常实现了在 Component 接口中定义的操作这些操作可以通过递归调用子节点来实现。 以下是模式示例  #include iostream #include string #include vector// 抽象组件类 class Component { public:virtual void operation() const 0; };// 叶子节点类 class Leaf : public Component { private:std::string name;public:Leaf(const std::string name) : name(name) {}void operation() const override {std::cout Leaf name operation std::endl;} };// 复合节点类 class Composite : public Component { private:std::vectorComponent* children;public:void add(Component* component) {children.push_back(component);}void remove(Component* component) {// 省略移除逻辑}void operation() const override {for (Component* child : children) {child-operation();}} };int main() {Leaf leafA(A);Leaf leafB(B);Composite composite;composite.add(leafA);composite.add(leafB);composite.operation();return 0; }在上述示例中我们定义了 Component 抽象组件类Leaf 叶子节点类和 Composite 复合节点类。叶子节点表示组合中的最终节点而复合节点表示可以包含子节点的节点。在 main 函数中我们创建了两个叶子节点 leafA 和 leafB然后将它们添加到了复合节点 composite 中最后通过复合节点的 operation 方法调用了所有子节点的 operation 方法实现了对整个组合结构的统一处理。 5. Facade(外观模式) 外观模式是一种结构型设计模式它提供了一个统一的接口用于访问子系统中的一群接口。外观模式定义了一个高层接口这个接口使得子系统更容易使用。 在 C 中外观模式通常包括以下几个角色 ①. Facade外观对客户端提供简单的接口隐藏了系统的复杂性提供了对子系统的统一访问接口。 ②. Subsystems子系统包含了一组相关的类和接口实现了系统的功能。 以下是模式示例  #include iostream// 子系统A class SubsystemA { public:void operationA() const {std::cout SubsystemA operation std::endl;} };// 子系统B class SubsystemB { public:void operationB() const {std::cout SubsystemB operation std::endl;} };// 子系统C class SubsystemC { public:void operationC() const {std::cout SubsystemC operation std::endl;} };// 外观类 class Facade { private:SubsystemA subsystemA;SubsystemB subsystemB;SubsystemC subsystemC;public:void operation() const {subsystemA.operationA();subsystemB.operationB();subsystemC.operationC();} };int main() {Facade facade;facade.operation();return 0; }6. Bridge(桥接模式) 桥接模式是一种结构型设计模式它将抽象部分与其实现部分分离使它们可以独立变化从而达到解耦的目的。桥接模式通过组合而不是继承的方式来实现这种分离。 在 C 中桥接模式通常涉及以下几个角色 ①. Abstraction抽象类定义抽象部分的接口并维护一个对实现部分对象的引用。 ②. Implementor实现类接口定义实现部分的接口它与抽象部分接口保持一致。 ③. ConcreteImplementor具体实现类实现实现类接口提供具体的实现。 ④. RefinedAbstraction扩充抽象类扩展抽象部分的接口通常通过组合的方式来调用实现部分的方法。 以下是模式示例  #include iostream// 实现类接口 class Implementor { public:virtual void operationImpl() const 0; };// 具体实现类A class ConcreteImplementorA : public Implementor { public:void operationImpl() const override {std::cout Concrete Implementor A operation std::endl;} };// 具体实现类B class ConcreteImplementorB : public Implementor { public:void operationImpl() const override {std::cout Concrete Implementor B operation std::endl;} };// 抽象类 class Abstraction { protected:Implementor* implementor;public:Abstraction(Implementor* impl) : implementor(impl) {}virtual void operation() const 0; };// 扩充抽象类 class RefinedAbstraction : public Abstraction { public:RefinedAbstraction(Implementor* impl) : Abstraction(impl) {}void operation() const override {implementor-operationImpl();} };int main() {Implementor* implA new ConcreteImplementorA();Implementor* implB new ConcreteImplementorB();Abstraction* abs1 new RefinedAbstraction(implA);Abstraction* abs2 new RefinedAbstraction(implB);abs1-operation();abs2-operation();delete abs2;delete abs1;delete implB;delete implA;return 0; }在上述示例中定义了 Implementor 实现类接口和两个具体实现类 ConcreteImplementorA 和 ConcreteImplementorB。然后定义了抽象类 Abstraction它维护了一个对实现类的引用并定义了抽象方法 operation。最后定义了扩充抽象类 RefinedAbstraction它通过组合的方式调用了实现类的方法。 在 main 函数中创建了具体实现类的对象并将其传递给扩充抽象类通过调用 operation 方法来间接调用具体实现类的方法从而实现了抽象部分与实现部分的解耦。 7. Flyweight(享元模式) 享元模式Flyweight Pattern是一种结构型设计模式它旨在通过共享对象来减少内存使用和提高性能。该模式适用于存在大量相似对象且这些对象可以共享部分状态的情况。 在 C 中享元模式通常涉及以下几个角色 ①. Flyweight享元接口定义共享对象的接口可以接受外部状态作为参数。 ②. ConcreteFlyweight具体享元类实现享元接口并存储内部状态。具体享元类通常是可共享的。 ③. UnsharedConcreteFlyweight非共享具体享元类如果享元对象不可共享则创建非共享具体享元类。 ④. FlyweightFactory享元工厂用于创建和管理享元对象通常实现了享元对象的池化管理。 以下是模式示例 #include iostream #include unordered_map// 享元接口 class Flyweight { public:virtual void operation(int extrinsicState) const 0; };// 具体享元类 class ConcreteFlyweight : public Flyweight { private:int intrinsicState;public:ConcreteFlyweight(int intrinsicState) : intrinsicState(intrinsicState) {}void operation(int extrinsicState) const override {std::cout Concrete Flyweight with intrinsic state intrinsicState;std::cout and extrinsic state extrinsicState std::endl;} };// 享元工厂 class FlyweightFactory { private:std::unordered_mapint, Flyweight* flyweights;public:Flyweight* getFlyweight(int key) {if (flyweights.find(key) ! flyweights.end()) {return flyweights[key];} else {// 通过共享具有相同内部状态的享元对象可以减少内存使用和提高性能;Flyweight* flyweight new ConcreteFlyweight(key);flyweights[key] flyweight;return flyweight;}}~FlyweightFactory() {for (auto pair : flyweights) {delete pair.second;}flyweights.clear();} };int main() {FlyweightFactory factory;Flyweight* flyweight1 factory.getFlyweight(1);flyweight1-operation(100);Flyweight* flyweight2 factory.getFlyweight(2);flyweight2-operation(200);Flyweight* flyweight3 factory.getFlyweight(1);flyweight3-operation(300);delete flyweight3;delete flyweight2;delete flyweight1;return 0; }
http://www.zqtcl.cn/news/657100/

相关文章:

  • wordpress是建站工具 还是语言表格制作
  • 北京中国建设银行招聘信息网站店标logo图片免费制作
  • 网站建设分金手指专业二七文章网站是怎么做的
  • 东莞网站设计企业怎么制作手机app及网站
  • 林州做网站下载做蛋糕网站
  • 做网站改版的做实验用哪些国外网站
  • 什么是静态页面网站甜品网站建设方案
  • 做一个网站大概多少钱养生网站源码
  • 淘宝客网站建设分类校园网站开发设计报告
  • 个人网站模板 免费儿童编程培训机构
  • 运动健身型网站开发免费ddns域名注册
  • 专业pc网站建设wordpress 支持php7.1
  • 廊坊网站制作系统虚拟服务器搭建
  • 做网站的优势wordpress百度索引链接
  • 网站哪些功能是PHP做的wordpress 正文宽度
  • wordpress考试主题株洲优化公司
  • 怎么做企业网站建设方案怎样查网站有没有备案
  • 浙江短视频seo优化网站专做童装的网站
  • 印刷包装公司网站模板陕西住房和城乡建设厅网站
  • 成都响应式网站建设公司网站 建设的必要性
  • 江苏省建设局官方网站查询wordpress收到登录错误
  • 个人与企业签订网站开发合同北京个人网站建设
  • 阀门网站设计dede静态网站
  • 做暧暧视频网站在线网站建设项目推文
  • 岳池发展建设集团有限公司门户网站毕设做网站工作量够吗
  • 手机网站客户端设计与实现手机网站 焦点图
  • 网站建设常用的开发语言介绍设计公司官网首页
  • 做网站能拿多少钱视频策划方案怎么写
  • 权威的顺德网站建设dw不会写代码能建立网站吗
  • 做网站美工的前途怎么样企业通讯软件下载