Go language is a computer programming language, also known as Golang. It is a statically strongly typed, compiled, concurrent programming language developed by Google, and has garbage collection function; go language is designed as a A systems programming language for use on giant central servers that power web servers, storage clusters, or similar purposes.
#The operating environment of this tutorial: Windows 10 system, GO version 1.18, Dell G3 computer.
What does go language mean?
Go (also known as Golang) is a statically strongly typed, compiled language developed by Robert Griesemer, Rob Pike and Ken Thompson of Google. The Go language syntax is similar to C, but its functions include: memory safety, GC (garbage collection), structural form and CSP-style concurrent computing.
Go is a statically strongly typed, compiled, concurrent programming language with garbage collection capabilities developed by Google.
Robert Griesemer, Rob Pike and Ken Thompson began designing Go in September 2007, and later Ian Lance Taylor, Russ Cox joins the project. Go is developed based on the Inferno operating system. Go was officially announced in November 2009, becoming an open source project and implemented on Linux and Mac OS X platforms, and later added implementation under Windows systems. In 2016, Go was selected as "TIOBE's Best Language of 2016" by the software evaluation company TIOBE. Currently, Go releases a second-level version every six months (that is, upgrading from a.x to a.y).
Go language features
Simple, fast, safe
Parallel, interesting, open source
Memory management, array safety, fast compilation
Go language purpose
Go language is designed It is a systems programming language for use on giant central servers running web servers, storage clusters, or similar purposes.
For the field of high-performance distributed systems, Go language undoubtedly has higher development efficiency than most other languages. It provides massive parallel support, which is perfect for game server development.
Recommended learning: "go video tutorial"
The above is the detailed content of What does go language mean?. For more information, please follow other related articles on the PHP Chinese website!