c# 适配器模式
程序员文章站
2023-11-05 21:03:28
结构图: 客户可以对接的接口类: 复制代码 代码如下: class target { public virtual void request() { console.wri...
结构图:
客户可以对接的接口类:
class target
{
public virtual void request()
{
console.writeline("普通请求!");
}
}
客户需要使用适配器才能使用的接口:
class adaptee
{
public void specialrequest()
{
console.writeline("特殊请求!");
}
}
适配器的定义:继承与target类
class adapter : target
{
adaptee ad = new adaptee();
public override void request()
{
ad.specialrequest();
}
}
主函数的调用:
class program
{
static void main(string[] args)
{
target ta = new target();
ta.request();
target sta = new adapter();
sta.request();
console.readkey();
}
}
原本不可以使用的接口,通过适配器之后可以使用了。
客户可以对接的接口类:
复制代码 代码如下:
class target
{
public virtual void request()
{
console.writeline("普通请求!");
}
}
客户需要使用适配器才能使用的接口:
复制代码 代码如下:
class adaptee
{
public void specialrequest()
{
console.writeline("特殊请求!");
}
}
适配器的定义:继承与target类
复制代码 代码如下:
class adapter : target
{
adaptee ad = new adaptee();
public override void request()
{
ad.specialrequest();
}
}
主函数的调用:
复制代码 代码如下:
class program
{
static void main(string[] args)
{
target ta = new target();
ta.request();
target sta = new adapter();
sta.request();
console.readkey();
}
}
原本不可以使用的接口,通过适配器之后可以使用了。
上一篇: 红糖姜茶祛斑真的吗