当前位置:   article > 正文

《大话设计模式-Golang》策略模式 + 简单工厂模式_golang策略模式与简单工厂模式商场促销代码

golang策略模式与简单工厂模式商场促销代码

概念

策略模式(Strategy):它定义了算法家族,分别封装起来,让它们之间可以互相替换,此模式让算法的变化,不会影响到使用算法的客户。

需求

实现一个商场收银软件

UML图

在这里插入图片描述

代码

所有策略的父接口

type CashSuper interface {
	acceptCash(money float64) float64
}
  • 1
  • 2
  • 3

正常收费策略

type CashNormal struct {
}

func (c *CashNormal) acceptCash(money float64) float64 {
	return money
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

满减收费策略

type CashReturn struct {
	moneyCondition float64
	moneyReturn    float64
}

func (c *CashReturn) acceptCash(money float64) float64 {
	result := money
	if money > c.moneyCondition {
		result = result - math.Floor(money/c.moneyCondition)*c.moneyReturn
	}
	return result
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12

打折收费策略

type CashRebate struct {
	moneyRebate float64
}

func (c *CashRebate) acceptCash(money float64) float64 {
	return money * c.moneyRebate
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

简单工厂封装构造CashContext的过程

type CashContext struct {
	cs CashSuper
}

func (c *CashContext) CashContextFactory(typ string) CashContext {
	switch typ {
	case "正常收费":
		c.cs = &CashNormal{}
	case "满300返100":
		c.cs = &CashReturn{moneyCondition: 300, moneyReturn: 100}
	case "打8折":
		c.cs = &CashRebate{moneyRebate: 0.8}
	default:
		panic("do not support")
	}
	return *c
}

func (c *CashContext) GetResult(money float64) float64 {
	return c.cs.acceptCash(money)
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21

测试

//策略模式 + 简单工厂模式
var cc strategyPattern.CashContext
cc = cc.CashContextFactory("满300返100")
result := cc.GetResult(1000)
fmt.Println(result)
  • 1
  • 2
  • 3
  • 4
  • 5
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/708451
推荐阅读
相关标签
  

闽ICP备14008679号