This article will give you a preliminary understanding of Goroutine and channel in the Go language. I hope it will be helpful to you!
The implementation of the CSP
concurrency model of the Go language contains two main components: one is Goroutine
and the other ischannel
. This article will introduce their basic usage and precautions.
Goroutine
Goroutine
is the basic execution unit of the Go
application. It is a lightweight user-level thread , the bottom layer is concurrency achieved through coroutine
(coroutine). As we all know, a coroutine is a user thread running in user mode, so Goroutine
is also scheduled when the Go
program is running.
Basic usage
Syntax: go function/method
You can create a ## through go keyword function/method #Goroutine.
import ( "fmt" "time" ) func printGo() { fmt.Println("具名函数") } type G struct { } func (g G) g() { fmt.Println("方法") } func main() { // 基于具名函数创建 goroutine go printGo() // 基于方法创建 goroutine g := G{} go g.g() // 基于匿名函数创建 goroutine go func() { fmt.Println("匿名函数") }() // 基于闭包创建 goroutine i := 0 go func() { i++ fmt.Println("闭包") }() time.Sleep(time.Second) // 避免 main goroutine 结束后,其创建的 goroutine 来不及运行,因此在此休眠 1 秒 }Execution result:
闭包 具名函数 方法 匿名函数When multiple
Goroutine exist, their execution order is not fixed. Therefore, the results will be different every time you print.
go keyword, we can create
goroutine based on the named function / method, also
goroutine can be created based on anonymous functions/closures.
Goroutine exit? Under normal circumstances, as long as the execution of the
Goroutine function ends or the execution returns, it means the exit of
Goroutine. If
Goroutine's function or method has a return value, it will be ignored when
Goroutine exits.
channel
channel plays an important role in the Go concurrency model. It can be used to implement communication between
Goroutine, and can also be used to implement synchronization between
Goroutine.
Basic operations of channel
#channel is a composite data type. When declaring, you need to specify the elements in
channel type.
Declaration syntax: var ch chan stringDeclare a
channel whose element type is
string through the above code. Only elements of type
string can be stored.
channel is a reference type and must be initialized to write data. It is initialized by
make.
import ( "fmt" ) func main() { var ch chan string ch = make(chan string, 1) // 打印 chan 的地址 fmt.Println(ch) // 向 ch 发送 "Go" 数据 ch <- "Go" // 从 ch 中接收数据 s := <-ch fmt.Println(s) // Go }Through
ch , you can send data to the channel variable
ch, via
x := Data can be received from the channel variable
ch.
Buffered channel and unbuffered channel
If the capacity is not specified when initializing thechannel, an unbuffered # will be created. ##channel
: <pre class='brush:php;toolbar:false;'>ch := make(chan string)</pre>
The sending and receiving operations of the unbuffered
are synchronous. After the send operation is performed, the corresponding Goroutine
will block. , until there is another Goroutine
to perform the receive operation, and vice versa. What will happen if the send operation and execution operation are placed under the same Goroutine? Take a look at the following code: <pre class='brush:php;toolbar:false;'>import (
"fmt"
)
func main() {
ch := make(chan int)
// 发送数据
ch <- 1 // fatal error: all goroutines are asleep - deadlock!
// 接收数据
n := <-ch
fmt.Println(n)
}</pre>
After the program is run, you will get
at ch , prompting all <code>Goroutine
In a dormant state, it is deadlocked. To avoid this situation, we need to execute the sending and receiving operations of channel
in different Goroutine
. <pre class='brush:php;toolbar:false;'>import (
"fmt"
)
func main() {
ch := make(chan int)
go func() {
// 发送数据
ch <- 1
}()
// 接收数据
n := <-ch
fmt.Println(n) // 1
}</pre>
It can be concluded from the above example: the sending and receiving operations of unbuffered
must be carried out in two different Goroutine
, otherwise it will Occurrencedeadlock
image.
channel
is created: <pre class='brush:php;toolbar:false;'>ch := make(chan string, 5)</pre>
Buffered
and unbuffered chennel
is different. When performing a send operation, as long as the buffer of channel
is not full, Goroutine
will not hang until the buffer is full. channel
Performing a send operation will cause Goroutine
to hang. Code example: <pre class='brush:php;toolbar:false;'>func main() {
ch := make(chan int, 1)
// 发送数据
ch <- 1
ch <- 2 // fatal error: all goroutines are asleep - deadlock!
}</pre>
- channel# that can both send and receive
##
ch := make(chan int, 1)
The
channel variable is obtained through the above code, and we can perform sending and receiving operations on it.
Only receiving channel -
ch := make(<-chan int, 1)
The
channel variable is obtained through the above code, we can only receive it .
Only sent channel -
ch := make(chan<- int, 1)
The
channel variable is obtained through the above code, we can only send it .
通常只发送 channel
类型和只接收 channel
类型,会被用作函数的参数类型或返回值:
func send(ch chan<- int) { ch <- 1 } func recv(ch <-chan int) { <-ch }
channel 的关闭
通过内置函 close(c chan,可以对 <code>channel
进行关闭。
-
在发送端关闭
channel
在
channel
关闭之后,将不能对channel
执行发送操作,否则会发生panic
,提示channel
已关闭。func main() { ch := make(chan int, 5) ch <- 1 close(ch) ch <- 2 // panic: send on closed channel }
-
管道
channel
之后,依旧可以对channel
执行接收操作,如果存在缓冲区的情况下,将会读取缓冲区的数据,如果缓冲区为空,则获取到的值为channel
对应类型的零值。import "fmt" func main() { ch := make(chan int, 5) ch <- 1 close(ch) fmt.Println(<-ch) // 1 n, ok := <-ch fmt.Println(n) // 0 fmt.Println(ok) // false }
如果通过 for-range 遍历
channel
时,中途关闭channel
则会导致for-range
循环结束。
小结
本文首先介绍了 Goroutine
的创建方式以及其退出的时机是什么。
其次介绍了如何创建 channel
类型变量的有缓冲与无缓冲的创建方式。需要注意的是,无缓冲的 channel
发送与接收操作,需要在两个不同的 Goroutine
中执行,否则会发送 error
。
接下来介绍如何定义只发送和只接收的 channel
类型。通常只发送 channel
类型和只接收 channel
类型,会被用作函数的参数类型或返回值。
最后介绍了如何关闭 channel
,以及关闭之后的一些注意事项。
The above is the detailed content of A preliminary exploration of Goroutine and channel in Go language. For more information, please follow other related articles on the PHP Chinese website!

go语言有缩进。在go语言中,缩进直接使用gofmt工具格式化即可(gofmt使用tab进行缩进);gofmt工具会以标准样式的缩进和垂直对齐方式对源代码进行格式化,甚至必要情况下注释也会重新格式化。

go语言叫go的原因:想表达这门语言的运行速度、开发速度、学习速度(develop)都像gopher一样快。gopher是一种生活在加拿大的小动物,go的吉祥物就是这个小动物,它的中文名叫做囊地鼠,它们最大的特点就是挖洞速度特别快,当然可能不止是挖洞啦。

是,TiDB采用go语言编写。TiDB是一个分布式NewSQL数据库;它支持水平弹性扩展、ACID事务、标准SQL、MySQL语法和MySQL协议,具有数据强一致的高可用特性。TiDB架构中的PD储存了集群的元信息,如key在哪个TiKV节点;PD还负责集群的负载均衡以及数据分片等。PD通过内嵌etcd来支持数据分布和容错;PD采用go语言编写。

go语言需要编译。Go语言是编译型的静态语言,是一门需要编译才能运行的编程语言,也就说Go语言程序在运行之前需要通过编译器生成二进制机器码(二进制的可执行文件),随后二进制文件才能在目标机器上运行。

go语言能编译。Go语言是编译型的静态语言,是一门需要编译才能运行的编程语言。对Go语言程序进行编译的命令有两种:1、“go build”命令,可以将Go语言程序代码编译成二进制的可执行文件,但该二进制文件需要手动运行;2、“go run”命令,会在编译后直接运行Go语言程序,编译过程中会产生一个临时文件,但不会生成可执行文件。

删除map元素的两种方法:1、使用delete()函数从map中删除指定键值对,语法“delete(map, 键名)”;2、重新创建一个新的map对象,可以清空map中的所有元素,语法“var mapname map[keytype]valuetype”。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 Mac version
God-level code editing software (SublimeText3)

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Zend Studio 13.0.1
Powerful PHP integrated development environment
