码迷,mamicode.com
首页 > 其他好文 > 详细

工厂方法模式

时间:2017-01-25 07:44:20      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:factor   string   extends   tin   代码   logs   影响   概述   接口   

 

工厂方法概述

工厂方法模式中抽象工厂类负责定义创建对象的接口,具体对象的创建工作由继承抽象工厂的具体类实现。

 

优点

客户端不需要在负责对象的创建,从而明确了各个类的职责,如果有新的对象增加,只需要增加一个具体的类和具体的工厂类即可,不影响已有的代码,后期维护容易,增强了系统的扩展性

 

缺点

需要额外的编写代码,增加子工作量

 

public class IntegerDemo {
	public static void main(String[] args) {
		Factory factory = new DogFactory();
		Animal animal = factory.createAnimal();
		animal.eat();

		factory = new CatFactory();
		animal = factory.createAnimal();
		animal.eat();
	}
}

abstract class Animal {// 抽象类
	public abstract void eat();
}

class Dog extends Animal {// 狗
	public void eat() {
		System.out.println("a dog is eatting.");
	}
}

class Cat extends Animal {// 猫
	public void eat() {
		System.out.println("a cat is eatting.");
	}
}

interface Factory {// 接口
	public abstract Animal createAnimal();
}

class DogFactory implements Factory {// 实现接口
	public Animal createAnimal() {
		return new Dog();
	}
}

class CatFactory implements Factory {// 实现接口
	public Animal createAnimal() {
		return new Cat();
	}
}

 

工厂方法模式

标签:factor   string   extends   tin   代码   logs   影响   概述   接口   

原文地址:http://www.cnblogs.com/denggelin/p/6348109.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!