适配器模式

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了适配器模式相关的知识,希望对你有一定的参考价值。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;


/*

为方便统一接口。通过适配器来转换调用

*/
namespace App_MYCS.HDL_SJMS.SPCMS
{
class my_SPCMS
{

public void dy()
{
Target target = new Adapter();
target.Request();


}
}

//
class Target
{
public virtual void Request()
{
Console.WriteLine("普通请求");
}
}

class Adaptee
{
public void SpecificRequest()
{
Console.WriteLine("特别请求");
}
}


class Adapter : Target
{
private Adaptee adaptee = new Adaptee();

public override void Request()
{
adaptee.SpecificRequest();
}
}

 

//--------------------------------------------

interface I1
{
string abc1();
}

class I1class:I1
{
public string abc1()
{
return "abc1";
}
}

//
class I1class2
{
public string bca1()
{
return "bca1";
}
}

//适配 I1class2 可以实现接口
class I1class1 : I1
{
I1class2 i1 = new I1class2();
public string abc1()
{
return i1.bca1();
}
}

class dyclass
{
I1 i = new I1class();
I1 j = new I1class1();

//适配后就可以统一方式进行调用
}

}

以上是关于适配器模式的主要内容,如果未能解决你的问题,请参考以下文章

尚硅谷设计模式学习 --- [类适配器模式对象适配器模式接口适配器模式]

设计模式 结构型模式 -- 适配器模式(概述类适配器模式对象适配器模式适配器模式适用场景JDK源码解析(I / O流))

设计模式之(20)——适配器模式

设计模式——适配器模式

设计模式:适配器模式(Adapter)

适配器模式(Adapter Pattern)