设计策略模式

策略模式

介绍

假如一个人要出去旅游,交通工具有很多种,可以开车、走路、坐飞机等等,这个时候使用哪种交通工具就是一种策略,交通工具是可以扩展的,为了满足这种情况我们可以使用策略模式。

假如切一块肉,可以使用锯子、小刀、菜刀等,使用哪种工具就是一种策略。

python实现

python 复制代码
# 策略模式
class Transportation:
    def use(self):
        pass

class Person(object):
    way = None

    def set_way(self, way: Transportation):
        self.way = way
        print(f"设置交通工具【{way}】成功")

    def use_way(self):
        self.way.use()

class Walk(Transportation):
    def use(self):
        print("步行")

class Boat(Transportation):
    def use(self):
        print("坐船")

if __name__ == '__main__':
    p = Person()
    w = Walk()
    b = Boat()
    p.set_way(w)
    p.use_way()
    p.set_way(b)
    p.use_way()
    print("-----------------")

go实现

go 复制代码
package main

import "fmt"

// 交通工具
type Transportation interface {
	Use()
}
type Boat struct {
}

func (b *Boat) Use() {
	fmt.Println("使用船")
}

type Walk struct {
}

func (w *Walk) Use() {
	fmt.Println("使用步行")
}

// 定义人
type Person struct {
	way Transportation
}

func (p *Person) SetWay(way Transportation) {
	p.way = way
}
func (p *Person) UseWay() {
	p.way.Use()
}

// 策略模式
func main() {
	// 创建人对象
	p := Person{}
	//创建交通工具
	b := new(Boat)
	w := Walk{}
	p.SetWay(b)
	p.UseWay()
	p.SetWay(&w)
	p.UseWay()
}

总结

那些频繁切换方法使用的情况可以使用策略模式

相关推荐
越甲八千2 天前
简单工厂模式和策略模式的异同
简单工厂模式·策略模式
无奈何杨3 天前
LiteFlow决策系统的策略模式,顺序、最坏、投票、权重
策略模式·模型·规则引擎·决策
Adellle5 天前
判题机的开发(代码沙箱、三种模式、工厂模式、策略模式优化、代理模式)
java·后端·代理模式·策略模式
技术思考者6 天前
Java设计模式实战:策略模式、工厂模式、模板模式组合使用
java·设计模式·策略模式
Narutolxy6 天前
️ macOS 安装 Oracle Instant Client:详细教程与实践指南20241216
macos·oracle·策略模式
智慧城市20307 天前
78页PPT丨家居集团流程信息中心战略规划报告2020
阿里云·策略模式
xiaoduyyy8 天前
【Android】行为型设计模式—策略模式、模版方法模式、观察者模式
android·设计模式·策略模式
重生之Java开发工程师10 天前
⭐设计模式—策略模式
java·设计模式·面试·策略模式
庄小焱11 天前
设计模式——Singleton(单例)设计模式
设计模式·策略模式·系统设计
Vincent(朱志强)12 天前
设计模式详解(十):策略模式——Strategy
设计模式·策略模式