[设计模式 Go实现] 创建型~简单工厂模式

go 语言没有构造函数一说,所以一般会定义NewXXX函数来初始化相关类。 NewXXX 函数返回接口时就是简单工厂模式,也就是说Golang的一般推荐做法就是简单工厂。

代码实现

go 复制代码
package simplefactory

import "fmt"

//API is interface
type API interface {
	Say(name string) string
}

//NewAPI return Api instance by type
func NewAPI(t int) API {
	if t == 1 {
		return &hiAPI{}
	} else if t == 2 {
		return &helloAPI{}
	}
	return nil
}

//hiAPI is one of API implement
type hiAPI struct{}

//Say hi to name
func (*hiAPI) Say(name string) string {
	return fmt.Sprintf("Hi, %s", name)
}

//HelloAPI is another API implement
type helloAPI struct{}

//Say hello to name
func (*helloAPI) Say(name string) string {
	return fmt.Sprintf("Hello, %s", name)
}

单元测试

go 复制代码
package simplefactory

import "testing"

//TestType1 test get hiapi with factory
func TestType1(t *testing.T) {
	api := NewAPI(1)
	s := api.Say("Tom")
	if s != "Hi, Tom" {
		t.Fatal("Type1 test fail")
	}
}

func TestType2(t *testing.T) {
	api := NewAPI(2)
	s := api.Say("Tom")
	if s != "Hello, Tom" {
		t.Fatal("Type2 test fail")
	}
}

测试结果

相关推荐
憶巷5 小时前
设计模式的分类及作用
java·设计模式
冀晓武6 小时前
C++ 设计模式:观察者模式(Observer Pattern)
c++·观察者模式·设计模式
捕鲸叉6 小时前
C++设计模式之行为型模式概述,它们的目的与特点
c++·设计模式
冀晓武6 小时前
C++ 设计模式:享元模式(Flyweight Pattern)
c++·设计模式·享元模式
犬余6 小时前
设计模式之迭代器模式:图书馆漫步指南
java·开发语言·设计模式·迭代器模式
冀晓武8 小时前
C++ 设计模式:建造者模式(Builder Pattern)
c++·设计模式·建造者模式
huaqianzkh9 小时前
抽象工厂设计模式的理解和实践
设计模式
冀晓武9 小时前
C++ 设计模式:桥接模式(Bridge Pattern)
c++·设计模式·桥接模式
MinBadGuy9 小时前
【GeekBand】C++设计模式笔记18_State_状态模式
c++·设计模式
龙晓飞度11 小时前
上位机开发 的算法与数据结构
开发语言·后端·golang