1.简单工厂模式

简介:

        从设计模式的类型上来说,简单工厂模式是属于创建型模式,又叫做静态工厂方法(Static Factory Method)模式,但不属于23种GOF设计模式之一。简单工厂模式是由一个工厂对象决定创建出哪一种产品类的实例。简单工厂模式是工厂模式家族中最简单实用的模式,可以理解为是不同工厂模式的一个特殊实现。


我对简单工厂模式的理解:

1. 简单工厂模式的实现能让客户端那边节省很多工作。客户端只需实例化一个工厂类的对象,通过向工厂传进参数,并定义一个基类对象来接收工厂内部返回的实例即可。

2. 工厂模式的实现使得客户端不必管这些对象究竟如何创建及如何组织的,有利于整个软件体系结构的优化。

3. 简单工厂模式的UML图如下:


下面是用C++实现的简单Factory模式:

/*
*	文件名: Operation.h
*	说明:作为基类
*/
#pragma once
class Operation
{
private :
	double m_Number1;
	double m_Number2;

public:
	Operation& SetNumber1(double num1);
	const double GetNumber1() const;
	Operation& SetNumber2(double num2);
	const double GetNumber2() const;

	const virtual double GetResult() const ;	//计算结果
};

//	文件名: Operation.cpp
#include "stdafx.h"
#include "Operation.h"

Operation& Operation::SetNumber1(double num1)
{
	this->m_Number1 = num1;
	return *this;
}
const double Operation::GetNumber1() const 
{
	return m_Number1;
}
Operation& Operation::SetNumber2(double num2)
{
	this->m_Number2 = num2;
	return *this;
}
const double Operation::GetNumber2() const
{
	return m_Number2;
}

const double Operation::GetResult() const
{
	return 0;
}

/*
*	文件名:OperationAdd.h
*	说明:	继承Operation类
*/
#pragma once
#include "operation.h"
class OperationAdd :
	public Operation
{
public:
	 const double GetResult() const;	//覆写GetResult()
};

//	文件名: OperationAdd.cpp
#include "stdafx.h"
#include "OperationAdd.h"

const double OperationAdd::GetResult() const 
{
	return (GetNumber1()+GetNumber2());
}

/*
*	文件名:OperationFactory.h
*	说明:	工厂类,根据客户端所传参数动态实例化相应对象
*/
#pragma once
#include "Operation.h"
#include <string>
class OperationFactory
{
public:
	//因为这里定义成静态函数,所以没办法访问非静态成员变量,
	//所以Operation对象只能在函数体中定义指针变量,而不能定义成员变量
	//这跟java和C#有些不同
	static Operation* CreateOperate(std::string operate);	
};

#include "stdafx.h"
#include "OperationFactory.h"
#include "OperationAdd.h"
#include "OperationSub.h"
#include "OperationMul.h"
#include "OperationDev.h"

Operation* OperationFactory::CreateOperate(std::string operate)
{
	//C++中switch语句中的参数不能为字符串,所以用if语句判断了
	Operation *m_oper;
	if(operate == "+")
		m_oper = new OperationAdd();
	else if(operate == "-")
		m_oper = new OperationSub();
	else if(operate == "*")
		m_oper = new OperationMul();
	else if(operate == "/")
		m_oper = new OperationDev();
	else
		throw("未找到合适的操作");

	return m_oper;
}

/*
*	文件名: SimpleCalculator.cpp 
*	说明:	定义应用程序的入口点-->main函数
*/
#include "stdafx.h"
#include "OperationFactory.h"
#include <iostream>

int _tmain(int argc, _TCHAR* argv[])
{
	Operation *oper;		//定义基类对象
	oper = OperationFactory::CreateOperate("+");	//通过传进参数获得对象
	oper->SetNumber1(4).SetNumber2(3);		//设置操作数
	std::cout<<"结果为:"<<oper->GetResult()<<std::endl;	//计算结果
	return 0;
}

        就这个程序而言,当你需要添加其他运算方式(如实现一个开方sqrt()功能)时,只需要定义一个类继承于Operation类,然后实现其功能即可,而无需改动其他类中的代码。做到了低耦合。而当操作多变时就需要用到策略模式了,详细待见2.策略模式哈。。。

        以上说法或代码有误望指出,小弟感激不尽 !!!


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
很抱歉,作为人工智能,我无法编写和运行Java代码。但是,我可以提供一些关于创建型设计模式的解释和示例,帮助你更好地理解这些概念。 1. 简单工厂模式 简单工厂模式是一种通过一个工厂类来创建不同类型对象的设计模式。在这种模式中,客户端只需要知道所需产品的名称或类型,而不需要知道具体的实现细节。 示例代码: ``` public class AnimalFactory { public static Animal createAnimal(String type) { if (type.equals("dog")) { return new Dog(); } else if (type.equals("cat")) { return new Cat(); } else { return null; } } } public interface Animal { public void makeSound(); } public class Dog implements Animal { public void makeSound() { System.out.println("Woof!"); } } public class Cat implements Animal { public void makeSound() { System.out.println("Meow!"); } } public class Main { public static void main(String[] args) { Animal animal1 = AnimalFactory.createAnimal("dog"); Animal animal2 = AnimalFactory.createAnimal("cat"); animal1.makeSound(); // Output: Woof! animal2.makeSound(); // Output: Meow! } } ``` 2. 工厂方法模式 工厂方法模式是一种将对象的创建委托给子类的设计模式。在这种模式中,客户端只需要知道所需产品的抽象类型,而具体的实现由子类来决定。 示例代码: ``` public interface Animal { public void makeSound(); } public class Dog implements Animal { public void makeSound() { System.out.println("Woof!"); } } public class Cat implements Animal { public void makeSound() { System.out.println("Meow!"); } } public abstract class AnimalFactory { public abstract Animal createAnimal(); } public class DogFactory extends AnimalFactory { public Animal createAnimal() { return new Dog(); } } public class CatFactory extends AnimalFactory { public Animal createAnimal() { return new Cat(); } } public class Main { public static void main(String[] args) { AnimalFactory factory1 = new DogFactory(); Animal animal1 = factory1.createAnimal(); AnimalFactory factory2 = new CatFactory(); Animal animal2 = factory2.createAnimal(); animal1.makeSound(); // Output: Woof! animal2.makeSound(); // Output: Meow! } } ``` 3. 抽象工厂模式 抽象工厂模式是一种提供一个接口来创建一系列相关或相互依赖对象的设计模式。在这种模式中,客户端通过调用工厂接口的方法来创建不同类型的对象。 示例代码: ``` public interface Animal { public void makeSound(); } public class Dog implements Animal { public void makeSound() { System.out.println("Woof!"); } } public class Cat implements Animal { public void makeSound() { System.out.println("Meow!"); } } public interface AnimalFactory { public Animal createAnimal(); } public class DomesticAnimalFactory implements AnimalFactory { public Animal createAnimal() { return new Dog(); } } public class WildAnimalFactory implements AnimalFactory { public Animal createAnimal() { return new Cat(); } } public class Main { public static void main(String[] args) { AnimalFactory factory1 = new DomesticAnimalFactory(); Animal animal1 = factory1.createAnimal(); AnimalFactory factory2 = new WildAnimalFactory(); Animal animal2 = factory2.createAnimal(); animal1.makeSound(); // Output: Woof! animal2.makeSound(); // Output: Meow! } } ``` 4. 单例模式 单例模式是一种保证一个类只有一个实例,并提供全局访问点的设计模式。在这种模式中,构造函数是私有的,只能通过静态方法来获取实例。 示例代码: ``` public class Singleton { private static Singleton instance = null; private Singleton() {} public static Singleton getInstance() { if (instance == null) { instance = new Singleton(); } return instance; } } public class Main { public static void main(String[] args) { Singleton singleton1 = Singleton.getInstance(); Singleton singleton2 = Singleton.getInstance(); System.out.println(singleton1 == singleton2); // Output: true } } ``` 5. 原型模式 原型模式是一种通过复制现有对象来创建新对象的设计模式。在这种模式中,通过调用对象的克隆方法来创建新对象。 示例代码: ``` public class Sheep implements Cloneable { private String name; public Sheep(String name) { this.name = name; } public void setName(String name) { this.name = name; } public String getName() { return name; } public Sheep clone() { try { return (Sheep) super.clone(); } catch (CloneNotSupportedException e) { e.printStackTrace(); return null; } } } public class Main { public static void main(String[] args) { Sheep sheep1 = new Sheep("Dolly"); Sheep sheep2 = sheep1.clone(); sheep2.setName("Molly"); System.out.println(sheep1.getName()); // Output: Dolly System.out.println(sheep2.getName()); // Output: Molly } } ``` 6. 建造者模式 建造者模式是一种将复杂对象的构建过程分离出来的设计模式。在这种模式中,通过调用建造者类的方法来构建对象,可以灵活地定制对象的组成部分。 示例代码: ``` public class Computer { private String cpu; private String gpu; private String memory; private String storage; public Computer(String cpu, String gpu, String memory, String storage) { this.cpu = cpu; this.gpu = gpu; this.memory = memory; this.storage = storage; } public String getCpu() { return cpu; } public String getGpu() { return gpu; } public String getMemory() { return memory; } public String getStorage() { return storage; } } public interface ComputerBuilder { public void setCpu(String cpu); public void setGpu(String gpu); public void setMemory(String memory); public void setStorage(String storage); public Computer build(); } public class GamingComputerBuilder implements ComputerBuilder { private String cpu; private String gpu; private String memory; private String storage; public void setCpu(String cpu) { this.cpu = cpu; } public void setGpu(String gpu) { this.gpu = gpu; } public void setMemory(String memory) { this.memory = memory; } public void setStorage(String storage) { this.storage = storage; } public Computer build() { return new Computer(cpu, gpu, memory, storage); } } public class OfficeComputerBuilder implements ComputerBuilder { private String cpu; private String memory; private String storage; public void setCpu(String cpu) { this.cpu = cpu; } public void setGpu(String gpu) {} public void setMemory(String memory) { this.memory = memory; } public void setStorage(String storage) { this.storage = storage; } public Computer build() { return new Computer(cpu, null, memory, storage); } } public class ComputerDirector { private ComputerBuilder builder; public void setBuilder(ComputerBuilder builder) { this.builder = builder; } public Computer buildComputer() { builder.setCpu("Intel i7"); builder.setMemory("16GB"); builder.setStorage("512GB SSD"); return builder.build(); } } public class Main { public static void main(String[] args) { ComputerDirector director = new ComputerDirector(); ComputerBuilder builder1 = new GamingComputerBuilder(); ComputerBuilder builder2 = new OfficeComputerBuilder(); director.setBuilder(builder1); Computer gamingComputer = director.buildComputer(); director.setBuilder(builder2); Computer officeComputer = director.buildComputer(); System.out.println(gamingComputer.getCpu()); // Output: Intel i7 System.out.println(gamingComputer.getGpu()); // Output: NVIDIA GTX System.out.println(officeComputer.getCpu()); // Output: Intel i7 System.out.println(officeComputer.getGpu()); // Output: null } } ``` 以上是关于六种创建型设计模式的简要介绍和示例代码。希望能对你有所帮助。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值