Usually when I start dealing with something new I want to see what others have done in the same sphere. That’s why I think one list of successful Rails Web Applications will be helpful for new-comers and not only to them. In fact you will see that great applications have been lunched in th ...
从追MM谈Java的23种设计模式
??1、FACTORY—追MM少不了请吃饭了,麦当劳的鸡翅和肯德基的鸡翅都是MM爱吃的东西,虽然口味有所不同,但不管你带MM去麦当劳或肯德基,只管向服务员说“来四个鸡翅”就行了。麦当劳和肯德基就是生产鸡翅的Factory.
??
?? 工厂模式:客户类和工厂类分开。消费者任何时候需要某种产品,只需向工厂请求即可。消费者无须修改就可以接纳新产品。缺点是当产品修改时,工厂类也要做相应的修改。如:如何创建及如何向客户端提供。
??
程序代码
?? public class Factory{
...







评论排行榜