工厂方法模式的用意是定义一个创建产品对象的工厂,将实际的创建工作推迟到子类中。
修改上节中简单工厂模式
抽象工厂
public interface FruitGardener {
public Fruit factory();
}
具体工厂
public class AppleGardener implements FruitGardener {
public Fruit factory() {
return new Apple();
}
}
public class GrapeGardener implements FruitGardener {
public Fruit factory() {
return new Grape();
}
}
public class StrawberryGardener implements FruitGardener {
public Fruit factory() {
return new Strawberry();
}
}
其他类请参照,上一篇博客,简单工厂模式
测试类
public class Client {
public static void main(String[] args) {
FruitGardener ag = new AppleGardener();
Fruit apple = ag.factory();
apple.plant();
apple.grow();
apple.harvest();
FruitGardener gg = new GrapeGardener();
Fruit grape = gg.factory();
grape.plant();
}
}
输出结果:
Apple has been planted
Apple is growing
Apple has been havested
Grape has been planted
URL 与 URLConnection的应用
URL hao360 = new URL("http://hao.360.cn/");
URLConnection hc = hao360.openConnection();
URLConnection是一个抽象类,所以hao360.openConnection()返回的一定是URLConnection的子类,所以openConnection()是工厂方法。
public class URLConnectionReader {
public static void main(String[] args) throws Exception {
URL hao360 = new URL("http://hao.360.cn/");
URLConnection hc = hao360.openConnection();
BufferedReader in = new BufferedReader(
new InputStreamReader(hc.getInputStream()));
String inputLine;
while((inputLine = in.readLine()) != null) {
System.out.println(inputLine);
}
in.close();
}
}

- 大小: 61.2 KB
分享到:
相关推荐
1. **创建型模式**:这类模式关注对象的创建过程,如单例模式(Singleton)、工厂方法模式(Factory Method)、抽象工厂模式(Abstract Factory)、建造者模式(Builder)和原型模式(Prototype)。它们提供了一种...
第04章 精益求精:工厂方法模式 (FactoryMethod) 第05章 再接再厉:抽象工厂模式 (AbstractFactory) 第06章 孜孜不倦:创建者模式 (Builder) 第07章 照猫画虎:原型模式 (Prototype) 第08章 独一无二:单例模式 ...
1. 创建型模式:这类模式主要关注对象的创建过程,如单例模式(Singleton)、工厂方法模式(Factory Method)、抽象工厂模式(Abstract Factory)、建造者模式(Builder)和原型模式(Prototype)。单例模式确保一个...
1. 创建型模式:这类模式主要关注对象的创建过程,例如单例模式(Singleton)、工厂方法模式(Factory Method)、抽象工厂模式(Abstract Factory)、建造者模式(Builder)和原型模式(Prototype)。它们提供了一种...
在“易学设计模式代码”这个压缩包中,你将找到这些模式的Java实现示例。通过阅读和分析这些代码,你可以更好地理解每种模式的核心思想,以及如何在实际项目中应用它们。同时,虽然这里的示例是基于Java,但设计模式...