小猿圈分享-golang实现协程安全的几种方式

栏目: Go · 发布时间: 6年前

近些年 go 语言越来越多的被用在公司的开发中,同时学习go语言的朋友越来越多,小猿圈也为了跟上时代的脚步,给大家整理一些用go语言实现协程安全的几种方式。

1.channel - monitor goroutine

var deposits =make(chan int) // send amount to deposit

var balances =make(chan int) // receive balance

func Deposit(amountint) { deposits <- amount }

func Balance()int       { return <-balances }

func teller() {

var balance int // balance is confined toteller goroutine

for {

select {

case amount := <-deposits:

balance += amount

case balances <- balance:

}

}

}

func init() {

go teller() // start the monitor goroutine

}

2.channel - serial confinement

type Cake struct{state string }

func baker(cookedchan<- *Cake) {

for {

cake := new(Cake)

cake.state = "cooked"

cooked <- cake // baker nevertouches this cake again

}

}

func icer(icedchan<- *Cake, cooked <-chan *Cake) {

for cake := range cooked {

cake.state = "iced"

iced <- cake // icer nevertouches this cake again

}

}

3.mutual exclusion

import"sync"

var mu      sync.Mutex // guards balance

var balance int

func Deposit(amountint) {

mu.Lock()

balance = balance + amount

mu.Unlock()

}

func Balance() int{

mu.Lock()

defer mu.Unlock()

return balance

}

4.mutual exclusion - RWMutex

import"sync"

var mu      sync.RWMutex // guards balance

var balance int

func Deposit(amountint) {

mu.Lock()

balance = balance + amount

mu.Unlock()

}

func Balance() int{

mu.RLock() //readers lock

defer mu.RUnlock()

return balance

}

RLock允许读取并行,写入和读取完全互斥,多次读取,一次写入

5.Lazy Initialization - sync.Once

var loadIconsOncesync.Once

var iconsmap[string]image.Image

//Concurrency-safe.

func Icon(namestring) image.Image {

loadIconsOnce.Do(loadIcons)

return icons[name]

不知道大家有没有学习到,希望大家可以关注我,也可以分享给需要的朋友,小猿圈会持续更新go语言知识的,记得点赞哦!


以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

生物信息学算法导论

生物信息学算法导论

N.C.琼斯 / 第1版 (2007年7月1日) / 2007-7 / 45.0

这是一本关于生物信息学算法和计算思想的导论性教科书,原著由国际上的权威学者撰写,经国内知名专家精心翻译为中文,系统介绍推动生物信息学不断进步的算法原理。全书强调的是算法中思想的运用,而不是对表面上并不相关的各类问题进行简单的堆砌。 体现了以下特色: 阐述生物学中的相关问题,涉及对问题的模型化处理并提供一种或多种解决方案: 简要介绍生物信息学领域领军人物; 饶有趣味的小插图使得概念更加具体和形象,方......一起来看看 《生物信息学算法导论》 这本书的介绍吧!

Markdown 在线编辑器
Markdown 在线编辑器

Markdown 在线编辑器

正则表达式在线测试
正则表达式在线测试

正则表达式在线测试

RGB CMYK 转换工具
RGB CMYK 转换工具

RGB CMYK 互转工具