Go language is more similar to C language. The syntax of Go language is similar to that of C language, but the declaration of variables is different, and the functions support: memory safety, GC (garbage collection), structural form and CSP-style concurrent computing.
The operating environment of this tutorial: Windows 10 system, Go1.11.2, Dell G3 computer.
What language is the Go language more similar to?
Go language is more similar to C language.
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 calculation, and the declaration of variables is different.
Go supports garbage collection. Go's parallel model is based on Tony Hall's Communicating Sequential Process (CSP). Other languages that adopt a similar model include Occam and Limbo, but it also has features of Pi operations, such as channel transmission. Plugin support is opened in version 1.8, which means that some functions can now be dynamically loaded from Go.
Extended information:
Go language is the C language in the cloud computing era. The Go language was born to allow programmers to have higher productivity. The Go language is specially optimized for the programming of multi-processor system applications. Programs compiled using Go can be comparable to the speed of C or C code, and are more secure and Supports parallel processes.
When developers choose a language for their projects, they have to choose between rapid development and performance. Languages like C and C offer fast execution speed, while languages like Ruby and Python excel at rapid development. Go language builds a bridge between the two, not only providing a high-performance language, but also making development faster.
Related recommendations: "go tutorial"
The above is the detailed content of What language is more similar to go language?. For more information, please follow other related articles on the PHP Chinese website!