zoukankan      html  css  js  c++  java
  • 适配器模式

    适配器模式。将一个类的接口转换成客户希望的另外一个接口。

    Adapter模式使得原本因为接口不兼容而不能一起工作的那些类能够一起工作。

    应用场景:系统的数据和行为都正确,但接口不符时,我们应该考虑用适配器,目的是使控制范围之外的一个原有对象与某个接口匹配。适配器模式主要应用于希望复用一些现存的类。可是接口又与复用环境要求不一致的情况。

    代码实现:
    //Adapter.h
    #include "stdafx.h"
    #include <iostream>
    
    class Adaptee
    {
    public:
    	void Request()
    	{
    		std::cout << "实际要使用的类方法!

    " << std::endl; } }; class Target { public: virtual ~Target(){} virtual void Operator() = 0; }; class Adapter :public Target { private: Adaptee* m_Adaptee = new Adaptee(); public: virtual void Operator() { m_Adaptee->Request(); } };


    // AdapterPattern.cpp : Defines the entry point for the console application.
    //
    
    #include "stdafx.h"
    #include "Adapter.h"
    
    
    int _tmain(int argc, _TCHAR* argv[])
    {
    	Target* target = new Adapter();
    	target->Operator();
    
    	getchar();
    	return 0;
    }
    


  • 相关阅读:
    HttpUtils
    其实就是这么回事
    Spring 、 CXF 整合 swagger 【试炼】
    Jetty 学习记录
    WebSphere 学习记录
    Apache 学习记录
    WebLogic 学习记录
    Hessian 学习记录
    IntelliJ IDEA学习记录
    IntelliJ IDEA学习记录
  • 原文地址:https://www.cnblogs.com/wgwyanfs/p/7133741.html
Copyright © 2011-2022 走看看