资源描述:
《Annex 3 Investment Opened Activities (Category 1)》由会员上传分享,免费在线阅读,更多相关内容在学术论文-天天文库。
1、Android常用的8种设计模式一般来说,常用的android设计模式有以下8种:适配器、工厂、单例、观察者、代理、命令、组合、访问者。设计模式之Adapter(适配器模式)定义:将两个不兼容的类纠合在一起使用,属于结构型模式,需要有Adaptee(被适配者)和Adaptor(适配器)两个身份.为何使用:我们经常碰到要将两个没有关系的类组合在一起使用,第一解决方案是:修改各自类的接口,但是如果我们没有源代码,或者,我们不愿意为了一个应用而修改各自的接口。怎么办:使用Adapter,在这两种接口之间创
2、建一个混合接口(混血儿).如何使用:实现Adapter方式,其实"thinkinJava"的"类再生"一节中已经提到,有两种方式:组合(composition)和继承(inheritance).假设我们要打桩,有两种类:方形桩圆形桩.publicclassSquarePeg{ publicvoidinsert(Stringstr){ System.out.println("SquarePeginsert():"+str); }}publicclassRoundPeg{ publicvoi
3、dinsertIntohole(Stringmsg){ System.out.println("RoundPeginsertIntoHole():"+msg);}}现在有一个应用,需要既打方形桩,又打圆形桩.那么我们需要将这两个没有关系的类综合应用.假设RoundPeg我们没有源代码,或源代码我们不想修改,那么我们使用Adapter来实现这个应用:publicclassPegAdapterextendsSquarePeg{ privateRoundPegroundPeg; publicPe
4、gAdapter(RoundPegpeg)(this.roundPeg=peg;) publicvoidinsert(Stringstr){roundPeg.insertIntoHole(str);}}在上面代码中,RoundPeg属于Adaptee,是被适配者.PegAdapter是Adapter,将Adaptee(被适配者RoundPeg)和Target(目标SquarePeg)进行适配.实际上这是将组合方法(composition)和继承(inheritance)方法综合运用.PegAdap
5、ter首先继承SquarePeg,然后使用new的组合生成对象方式,生成RoundPeg的对象roundPeg,再重载父类insert()方法。从这里,你也了解使用new生成对象和使用extends继承生成对象的不同,前者无需对原来的类修改,甚至无需要知道其内部结构和源代码.如果你有些Java使用的经验,已经发现,这种模式经常使用。进一步使用上面的PegAdapter是继承了SquarePeg,如果我们需要两边继承,即继承SquarePeg又继承RoundPeg,因为Java中不允许多继承,但是我们
6、可以实现(implements)两个接口(interface)publicinterfaceIRoundPeg{ publicvoidinsertIntoHole(Stringmsg);}publicinterfaceISquarePeg{ publicvoidinsert(Stringstr);}下面是新的RoundPeg和SquarePeg,除了实现接口这一区别,和上面的没什么区别。publicclassSquarePegimplementsISquarePeg{ publicvoidin
7、sert(Stringstr){ System.out.println("SquarePeginsert():"+str); }}publicclassRoundPegimplementsIRoundPeg{ publicvoidinsertIntohole(Stringmsg){ System.out.println("RoundPeginsertIntoHole():"+msg); }}下面是新的PegAdapter,叫做two-wayadapter:publicclassPe
8、gAdapterimplementsIRoundPeg,ISquarePeg{ privateRoundPegroundPeg; privateSquarePegsquarePeg; //构造方法 publicPegAdapter(RoundPegpeg){this.roundPeg=peg;} //构造方法 publicPegAdapter(SquarePegpeg)(this.squarePeg=peg;) publicvoidinsert(Stri