本文实例讲述了java设计模式之工厂模式。分享给大家供大家参考,具体如下:
工厂模式(factory)
涉及到4个角色:抽象工厂类角色,具体工厂类角色,抽象产品类角色和具体产品类角色。
抽象工厂类角色使用接口或者父类来描述工厂的行为,
具体工厂类角色负责创建某一类型的产品对象。
抽象产品类可以使用接口或者父类来描述产品对象的行为特征。
具体产品类就是某一具体的对象。
工厂模式不同于静态工厂模式的地方:
工厂模式在工厂类也实现了多态,而不仅仅是在产品对象上实现多态。
它可以应对不同类型的产品对应一种具体的工厂。
其设计模式如下:
抽象工厂类 IFactory
1
2
3
4
5
6
7
8
9
|
package org.test.design.f;
/**
*
* @author lushuaiyin
*
*/
public interface IFactory {
IProduct createProduct();
}
|
具体工厂类 CarFactory ComputerFactory
1
2
3
4
5
6
|
package org.test.design.f;
public class CarFactory implements IFactory {
public IProduct createProduct() {
return new Car();
}
}
|
1
2
3
4
5
6
|
package org.test.design.f;
public class ComputerFactory implements IFactory {
public IProduct createProduct() {
return new Computer();
}
}
|
抽象产品类 IProduct
1
2
3
4
|
package org.test.design.f;
public interface IProduct {
void work();
}
|
具体产品类 Car Computer
1
2
3
4
5
6
|
package org.test.design.f;
public class Car implements IProduct{
public void work() {
System.out.println( "I am car." );
}
}
|
1
2
3
4
5
6
|
package org.test.design.f;
public class Computer implements IProduct{
public void work() {
System.out.println( "I am Computer." );
}
}
|
测试:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
package org.test.design.f;
public class TestMain {
/**
* @param args
*/
public static void main(String[] args) {
IFactory carFactory= new CarFactory();
IProduct car=(IProduct)carFactory.createProduct();
car.work();
IFactory pcFactory= new ComputerFactory();
IProduct pc=(IProduct)pcFactory.createProduct();
pc.work();
}
}
/*打印
I am car.
I am Computer.
*/
|
希望本文所述对大家java程序设计有所帮助。
原文链接:http://blog.csdn.net/lushuaiyin/article/details/8917363