45fan.com - 路饭网

搜索: 您的位置主页 > 电脑频道 > 编程代码 > 阅读资讯:delegation模式集锦

delegation模式集锦

2016-09-09 08:15:31 来源:www.45fan.com 【

delegation模式集锦

2004-10-28撰写

读GlobusToolkit编程文档时,里面在实现operationprovider时提到了delegation模式。
GOF的设计模式里好像没有这个模式,还好网上找到了相关的文档。翻译如下:

委托模式:(应该翻译成委托吧,如果翻译成代理容易和proxy模式混淆)
委托模式是一种技术,一个对象在外界来看好像实现了一些行为,但实际上是委托给相关的其他类来实现行为的.在不可以使用继承,而采用聚合时,必须使用这种技术.

一个简单的java例子:
这个例子中,C拥有调用A中f()和g()的插口.看起来C好像有A的功能.

classA{
voidf(){system.out.println("A:doingf()";}
voidg(){system.out.println("A:doingg()";}
}
classC{
//delegation
Aa=newA();
voidf(){a.f();}
voidg(){a.g();}
//normalattributes
Xx=newX();
voidy(){/*dostuff*/}
}
voidmain(){
Cc=newC();
c.f();
c.g();
}

另一个复杂些的java例子.
使用接口+委托可以提高程序灵活性,和类型的安全性.这个例子中,C代理了A,B二者之一.C可以在A,B之间切换.由于A,B都必须通过实现接口以实现功能,这就提高了了类型安全性.作为折中,当然也需要写更多的代码.

interfaceI{
voidf();
voidg();
}
classAimplementsI{
voidf(){system.out.println("A:doingf()";}
voidg(){system.out.println("A:doingg()";}
}
classBimplementsI{
voidf(){system.out.println("B:doingf()";}
voidg(){system.out.println("B:doingg()";}
}

classCimplementsI{
//delegation
Ii=newA();
voidf(){i.f();}
voidg(){i.g();}
//normalattributes
voidtoA(){i=newA();}
voidtoB(){i=newB();}
}
voidmain(){
Cc=newC();
c.f();
c.g();
}

缺点:这个模式是典型的牺牲性能提高抽象程序的清晰程度. (或者说提高代码可读性)

 

本文地址:http://www.45fan.com/bcdm/73924.html
Tags: 模式 delegation 2004-10-28
编辑:路饭网
推广内容
推荐阅读
热门推荐
推荐文章
关于我们 | 联系我们 | 友情链接 | 网站地图 | Sitemap | App | 返回顶部