Golang状态模式

黑手党老k · · 1347 次点击 · · 开始浏览    
这是一个创建于 的文章,其中的信息可能已经有所发展或是发生改变。

package main

import (
    "fmt"
)

// 环境类
type Account struct{
    State ActionState
    HealthValue int
}

// 状态类
type ActionState interface{
    View()
    Comment()
    Post()
}

// new accout
func NewAccount(health int) *Account{
    a:=&Account{
        HealthValue: health,
    }
    a.changeState()
    return a
}

// set healthValue for account
func (a *Account) SetHealth(value int){
    a.HealthValue = value
    a.changeState()
}

func (a *Account) changeState(){
    if a.HealthValue <= -10{
        a.State=&CloseState{}
    }else if a.HealthValue >-10 && a.HealthValue <= 0{
        a.State = &Retricted{}
    } else if  a.HealthValue > 0{
        a.State = & NormalState{}
    }
}


// state 三种状态
type NormalState struct{}
type Retricted struct{}
type CloseState struct{}

// 封装state 三种状态的不同行为
func (c *CloseState) View(){
    fmt.Println("无法查看")
}

func (c *CloseState) Comment(){
    fmt.Println("不能评论")
}

func (c *CloseState) Post(){
    fmt.Println("不能发布")
}


func (r *Retricted) View(){
    fmt.Println("正常")
}

func (r *Retricted) Comment(){
    fmt.Println("正常")
}

func (r *Retricted) Post(){
    fmt.Println("不能发布")
}

func (r *NormalState) View(){
    fmt.Println("正常")
}

func (r *NormalState) Comment(){
    fmt.Println("正常")
}

func (r *NormalState) Post(){
    fmt.Println("正常")
}

func main() {

}
// golang状态模式写法会多申明很多对像,但是会减少各种判定操作

有疑问加站长微信联系(非本文作者)

本文来自:简书

感谢作者:黑手党老k

查看原文:Golang状态模式

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

1347 次点击  
加入收藏 微博
暂无回复
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传