Golang has processes. A process is an execution process of a program in the operating system, and is the basic unit for resource allocation and scheduling by the system; a process is a dynamic concept, and is the basic unit for allocating and managing resources during the execution of a program. Each process has a own address space. The go language supports multiple processes, and its thread model is the MPG model. In general, there is a many-to-many correspondence between Go processes and kernel threads.
The operating environment of this tutorial: Windows 7 system, GO version 1.18, Dell G3 computer.
1. About processes and threads
1. Process
The process is the program in the operating system An execution process is the basic unit for resource allocation and scheduling by the system. Process is a dynamic concept and the basic unit for allocating and managing resources during program execution. Each process has its own address space. A process has at least 5 basic states: initial state, execution state, waiting state, ready state, and termination state.
In layman’s terms: A process is an executing program.
2. Thread
A thread is an execution instance of a process and the smallest unit of program execution. It is a basic unit that is smaller than a process and can run independently.
In layman's terms: A process can create multiple threads, and multiple threads in the same process can be executed concurrently. If a program wants to run, there must be at least one process.
2. About concurrency and parallelism
1. Concurrency
Multiple threads compete for a position at the same time, and only the ones that compete can be executed. Only one thread is executed in each time period.
2. Parallel
Multiple threads can be executed at the same time. In each time period, multiple threads can be executed at the same time.
3. In layman’s terms
Multi-threaded programs running on a single-core CPU are concurrency, and on multi-core CPUs Running is parallel. If the number of threads is greater than the number of CPU cores, a multi-threaded program will be both concurrent and parallel on multiple CPUs.
3. Goroutine coroutine and main thread
1. The main thread
can be understood as a thread or Process, multiple coroutines can be enabled on the main thread of a golang program. Multiple coroutines in golang can achieve concurrency or parallelism.
2. Coroutines
can be understood as user-level threads, which are transparent to the kernel, that is, the system does not know the existence of coroutines. It is completely scheduled by the user's own program. A major feature of golang is that it supports coroutines natively from the language perspective. You can create a coroutine by adding the go keyword in front of a function or method. It can be said that the coroutine in golang is goroutine.
# Multi-coroutine in Golang is somewhat similar to multi-threading in other languages.
3. Multi-coroutine and multi-threading
Each goroutine (coroutine) in Golang occupies much less memory by default than Java and C threads. OS threads (operating system threads) generally have a fixed stack memory (usually about 2MB). A goroutine (coroutine) occupies very small memory, only about 2KB. The scheduling overhead of multi-goroutine goroutine switching is much less than that of threads. This is one of the reasons why more and more large companies are using Golang.
4. Practical operation of go keywords
1. Sequential execution
package main import "fmt" func test() { for i := 0; i <h3 id="strong-Join-go-strong"><strong>2. Join go</strong></h3><pre class="brush:php;toolbar:false">package main import "fmt" func test() { for i := 0; i <h3 id="strong-Joining-time-strong"><strong>3. Joining time</strong></h3><pre class="brush:php;toolbar:false">package main import ( "fmt" "time" ) // 加入时间 func test1() { for i := 0; i <h3 id="strong-When-the-main-thread-executes-quickly-strong"><strong>4. When the main thread executes quickly</strong></h3><pre class="brush:php;toolbar:false">package main import ( "fmt" "time" ) func test1() { for i := 0; i <h3 id="strong-sync-WaitGroup-solves-the-problem-of-not-waiting-strong"><strong>5. sync .WaitGroup solves the problem of not waiting</strong></h3><pre class="brush:php;toolbar:false">package main import ( "fmt" "time" "sync" ) var wg sync.WiatGroup func test2() { for i := 0; i <h3 id="strong-Concurrent-execution-of-multiple-coroutines-strong"><strong>6. Concurrent execution of multiple coroutines</strong></h3><pre class="brush:php;toolbar:false">package main import ( "fmt" "time" "sync" ) func hello(num int) { defer wg.Done() for i := 0; i <h2 id="strong-Set-the-number-of-cpu-cores-occupied-by-golang-when-running-Not-very-important-strong"><strong>5. Set the number of cpu cores occupied by golang when running (Not very important) </strong></h2><pre class="brush:php;toolbar:false">package main import ( "fmt" "runtime" ) func main() { // 设置程序占用几个cpu进行执行,默认是全部 // 获取计算机cpu个数 cpuNum := runtime.NumCPU() fmt.Println(cpuNum) // 6 我本机电脑是6核cpu // 设置占用cpu个数 runtime.GOMAXPROCS(2) fmt.Println("ok") }
For more programming-related knowledge, please visit: Programming Video! !
The above is the detailed content of Does golang have a process?. 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语言程序进行编译的命令有两种:1、“go build”命令,可以将Go语言程序代码编译成二进制的可执行文件,但该二进制文件需要手动运行;2、“go run”命令,会在编译后直接运行Go语言程序,编译过程中会产生一个临时文件,但不会生成可执行文件。

go语言需要编译。Go语言是编译型的静态语言,是一门需要编译才能运行的编程语言,也就说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

Dreamweaver Mac version
Visual web development tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

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.

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

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