Home Backend Development Golang What are the disadvantages of go language?

What are the disadvantages of go language?

Dec 21, 2022 pm 07:36 PM
golang go language

Disadvantages of the go language: 1. "Performance disadvantage" caused by the choice of technical route. Go is a GC programming language. In some situations where performance is super sensitive, you still have to be cautious when choosing Go. 2. "Single expression method" and explicit error handling are a bit "outdated". 3. The smallest version chooses MVS, which deviates from the mainstream. 4. The Go core team has full control over language evolution, and it will not be approved by the majority of the community. Being adopted and added to the Go language has resulted in a disadvantage in the community, and there is a "crack" between the Go community and the Go core team. 5. Weak functionality.

What are the disadvantages of go language?

##This tutorial Operating environment: Windows 7 system, GO version 1.18, Dell G3 computer.

Each programming language has its own advantages and disadvantages, and Go is no exception. Let’s list the “advantages” and disadvantages of Go. "Disadvantages":

Advantages of Go

1. Simple and easy to learn

The Go language has a simple syntax, which includes elements similar to C The syntax of the language. If the reader has already mastered two to three programming languages, it only takes a few days to learn the Go language. Even a new developer can write a high-performance Go language in a few weeks. Language program.

2. Free and efficient

The compilation speed of Go language is significantly better than that of Java and C. It also has an operating efficiency close to C language and a development efficiency close to PHP. It can be said that Go language It perfectly integrates operating efficiency and development efficiency.

At the same time, Go language also supports all current programming paradigms, including procedural programming, object-oriented programming, interface-oriented programming, and functional programming. Developers Can be freely combined according to needs.

3. Powerful standard library

The standard library in Go is very stable and rich and diverse, including network, system, encryption, encoding, graphics and other aspects. Especially It is a very practical network and system library that allows developers to almost not rely on third-party libraries when developing large programs.

4. Easy deployment

No need to use a virtual machine, Go language The code can be directly output as a binary executable file. Moreover, the Go language has its own linker and does not rely on the compiler and linker provided by any system. Therefore, the compiled binary executable file can run in almost any system environment.

5. Native support for concurrency

Go language is a very efficient language that natively supports concurrency from the language layer and is very simple to use. The concurrency of Go language is based on Goroutine, which is similar to threads , but not threads, is a lightweight thread-oriented method of Go language. The cost of creating Goroutine is very low, only a few thousand bytes of additional memory.

Usually an ordinary desktop host runs hundreds of One thread will be overloaded, but the same host can run thousands or even tens of thousands of Goroutines. Communication between Goroutines can be achieved through channels. Goroutines and channel-based concurrency methods can maximize the use of CPU resources.

6. Strong stability

Go language has powerful compilation checks, strict coding standards and strong stability. In addition, Go language also provides software life cycle (such as development, testing , deployment, maintenance, etc.), such as: go tool, go fmt, go test, etc.

7. Garbage collection

When using Go language for development, in terms of memory, developers only need to pay attention to the application of memory, and do not need to worry about the release of memory, because the Go language has built-in Runtime is used to automatically manage it. Although GC (Garbage Collection, garbage collection mechanism) is not perfect at present, it is enough to cope with most situations encountered during development, allowing developers to focus more on business. At the same time, Go language also allows developers to This work is optimized.

Go's disadvantages

1. "Performance disadvantage" caused by technical route selection

As we all know, Go is full of garbage It is a recycling programming language, so no matter how short Go's STW (Stop The World) time is and how small the GC delay is, it still belongs to the GC class programming language and belongs to the same camp as Java and C#. At the same time, it is naturally related to C, A clear line is drawn between C and programming languages ​​like Rust that manually manage memory and do not have the burden of runtime GC. Although the original intention of the Go language is to become a system-level programming language, although Go's runtime performance can meet the needs of 99.99% of occasions, although Baidu's trillions of traffic [forwarding engine BFE], time series database [influxdb], and distributed relational database [ TiDB] and other performance-sensitive projects have chosen to be implemented in Go, but it cannot be denied that in some extremely performance-sensitive situations, you still have to be cautious when choosing Go.

2 The "expression disadvantage" brought about by adhering to one's own design philosophy

1) "Single" expression method

Many developers who switch from other languages ​​​​to the Go camp People complain that Go has too few tricks and not many routines. The reason why Go shows "expression disadvantage" stems from a principle in its design philosophy: "It advocates that there is only one or a few ways to write a thing." This principle does not meet the psychological needs of some developers to show off their skills, so Go is criticized as a language only used by programmers with mediocre qualifications.

[Go 1.18 will add generics (type parameters)], which can be regarded as a "compensation" for such "disadvantages". However, for those of us Gophers who have long recognized Go's values ​​and design philosophy, we are very worried that [generics], which has greatly improved Go's expressive capabilities, will become a "breeding ground" for tricks and tricks.

2) "Outdated" explicit error handling

Since the day it was born, the Go language has not provided an exception-based structure like mainstream programming languages ​​​​such as C, Java, and Python. Instead of try-catch-finally error handling mechanism, Go designers believe that coupling exceptions to program control structures will lead to code confusion. Go provides a simple error handling mechanism based on error value comparison, which "forces" every Go developer to explicitly pay attention to and handle each error. Code with explicit error handling will be more robust. It will also give Go developers more confidence in the code. However, the persistence of this design philosophy has been ridiculed by many developers from other languages ​​as "outdated" and called "an ancient mechanism from half a century ago." (Author's note: The error handling mechanism used when the C language was born in the 1970s)

The Go development team has also been "shaken". The Go development team has released multiple versions after the release of the Go2 plan [Go Draft new mechanism for error handling]. The Go community has also had long discussions and even "quarrels" on this issue. Well-known Gopher Dave Cheney spoke out, Rob Pike spoke out, and William Kennedy, a well-known Go trainer and one of the co-authors of "Go Language Practical Combat" After the Go team's try proposal was announced, they published an open letter to the Go community opposing the try plan. In the end, the group that insisted on the Go design philosophy gained the upper hand, and the try proposal was rejected and was not included in [Go 1.13 version]!

3. "Niche Disadvantages" that deviate from the mainstream

Go's early design of the package dependency management mechanism does have quite a few "flaws", which stems from the large internal code warehouse within Google and the The impact of trunk's development model. The Go language outside of Google has heard voices from different aspects. The Go package management mechanism has been unable to meet the needs of the community for a long time. As a result, there have been attempts to improve package dependency management such as [vendor mechanism] and [dep].

At the beginning of 2018, just when most gophers thought that dep would be "naturally" upgraded to part of the official go tool chain, Russ Cox, the technical leader of the Go core team and one of the early members of the Go core team He published [seven articles] on his personal blog, systematically expounding the Go team’s technical solution to “package dependency management”: [vgo], the predecessor of go module.

The main ideas of vgo include: Semantic Import Versioning and Minimal Version Selection. These are contrary to the rules of package dependency management of current mainstream programming languages, especially [Minimal Version Choose (MVS)], which is a new approach and deviates from the mainstream!

4. The "community disadvantage" caused by the Go core team's "democratic centralism"

is different from the Rust team's extensive adoption of community suggestions to "increase language features", Go is like another extreme : The Go core team has full control over the evolution of the language. Unless the majority of the community agrees, it will definitely be adopted and added to the Go language. I jokingly call it "democratic centralism", that is, the real voting power actually lies in Go. The core team represents a small number of people in the community.

The dispute between dep and vgo in early 2018 is a typical manifestation of this "disadvantage". The dep project that the community has worked hard to build for more than a year has been "squeezed out" by vgo, which was designed by Russ Cox and a few other people who spent some time focusing on it. The position of the Go package dependency management tool standard has become a "stepping stone" for the success of Go modules. . Even if it turns out that the Go team's decision to use go modules is correct, the "rift" between the Go community and the Go core team does exist, so that in the past two years, the Go core team has worked hard to improve relations with the Go community. relationship, standardizing and transparentizing the process of proposing, reviewing and accepting Go proposals.

5. After the failure of the all-out attack, the "functional weakness" caused by the failure of expectations

After the release of Go 1.5, Go has attracted much attention due to the significant reduction in bootstrapping and GC delays. It gradually increased until it won the TIOBE Programming Language of the Year for the second time in early 2017, which made the Go language somewhat "inflated". Even fanatical Go advocates once hoped that Go would dominate the world: not only firmly controlling its own cloud native market , to occupy the enterprise-level market of Java, we must also defeat existing opponents on the terminal (android. ios) and front-end (js).

Some people may think my above statements are ridiculous, but they are not groundless. The Go language has really made great achievements in terminal and front-end aspects. Anyone who knows the history of Go knows that the Go team once had full-time developers participating in the [gomobile project](, which aims to build the Go technology stack on Android and iOS. , to achieve the purpose of writing terminal applications in Go language.

In terms of front-end, [gopherjs project] can compile go code into js code and run it in major browsers. Later, the author of gopherjs helped the go project Natively supports webassembly, and supports compiling go into webassembly and running it in the browser.

However, the above attempts ultimately failed to "succeed". The current situation is that in the field of terminal and front-end applications, very few people use Go coding. So Go gradually calmed down and returned to the main battlefield where it was good at, returning to the fields of enterprise-level applications, infrastructure, middleware, microservices, command line applications, etc., and gained the favor of more and more developers in these fields. .

However, the failure of the all-out attack left many developers with the excuse that "Go's functions are weak." Some even say that [my father, Google] could not let his brother Android create a backdoor for Go.

【Related recommendations: Go video tutorial, Programming teaching

The above is the detailed content of What are the disadvantages of go language?. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What is the problem with Queue thread in Go's crawler Colly? What is the problem with Queue thread in Go's crawler Colly? Apr 02, 2025 pm 02:09 PM

Queue threading problem in Go crawler Colly explores the problem of using the Colly crawler library in Go language, developers often encounter problems with threads and request queues. �...

Which libraries in Go are developed by large companies or provided by well-known open source projects? Which libraries in Go are developed by large companies or provided by well-known open source projects? Apr 02, 2025 pm 04:12 PM

Which libraries in Go are developed by large companies or well-known open source projects? When programming in Go, developers often encounter some common needs, ...

What libraries are used for floating point number operations in Go? What libraries are used for floating point number operations in Go? Apr 02, 2025 pm 02:06 PM

The library used for floating-point number operation in Go language introduces how to ensure the accuracy is...

In Go, why does printing strings with Println and string() functions have different effects? In Go, why does printing strings with Println and string() functions have different effects? Apr 02, 2025 pm 02:03 PM

The difference between string printing in Go language: The difference in the effect of using Println and string() functions is in Go...

How to ensure concurrency is safe and efficient when writing multi-process logs? How to ensure concurrency is safe and efficient when writing multi-process logs? Apr 02, 2025 pm 03:51 PM

Efficiently handle concurrency security issues in multi-process log writing. Multiple processes write the same log file at the same time. How to ensure concurrency is safe and efficient? This is a...

How to solve the problem that custom structure labels in Goland do not take effect? How to solve the problem that custom structure labels in Goland do not take effect? Apr 02, 2025 pm 12:51 PM

Regarding the problem of custom structure tags in Goland When using Goland for Go language development, you often encounter some configuration problems. One of them is...

How to use Golang to implement Caddy-like background running, stop and reload functions? How to use Golang to implement Caddy-like background running, stop and reload functions? Apr 02, 2025 pm 02:12 PM

How to implement background running, stopping and reloading functions in Golang? During the programming process, we often need to implement background operation and stop...

What is the difference between `var` and `type` keyword definition structure in Go language? What is the difference between `var` and `type` keyword definition structure in Go language? Apr 02, 2025 pm 12:57 PM

Two ways to define structures in Go language: the difference between var and type keywords. When defining structures, Go language often sees two different ways of writing: First...

See all articles