In golang, generics is a style or paradigm of programming language, which means writing templates to adapt to all types, and defining specific variable types only when used specifically. Generics allow programmers to write code in a strongly typed programming language using types that are specified later and specified as parameters at instantiation time.
The operating environment of this tutorial: Windows 7 system, GO version 1.18, Dell G3 computer.
Go 1.18 version adds a new feature: support for generic programming.
If you are a developer from other languages to Go language, can you understand what generics are and how to use them?
But for those who are just beginners of Go language and have not been exposed to generic programming, this function may be confusing.
This article hopes that people who are not familiar with generic programming can also understand and use Go's generics well
A general guideline for programming Go: write Go programs by writing code, not by defining types
General principles of Go programming: write Go programs by writing code, not by defining types
What are generics?
Generics means writing templates to adapt to all types, and defining specific variable types only when used specifically.
Generics are a style or paradigm of programming languages. Generics allow programmers to write code in a strongly typed programming language using types that are specified later and specified as parameters at instantiation time.
The formal parameters and actual parameters of the function
The parameters when the function is defined are formal parameters (parameters). When the function is actually used, the parameters passed in The parameters are actual parameters (argument)
Assume there is an addition function. This function has two parameters that are both of type int
, and the return value is also int
; the definition is as follows:
func Test(a,b int) int { return a + b }
If the two actual parameters passed in are of type int
, then the function will naturally execute normally. However, this function can only be used to perform addition operations of type int
. If we also need to perform addition operations of type float64
, we need to write another function
It is not troublesome to write out the three types of addition calculations, just copy and paste. But if all computable types need to be added, the code will not be concise enough and will be unfriendly to read.
At this time, we will think about if a function can receive all calculation types, so that A calculation function has been written in two or three lines of code. This function can be achieved by simply defining a type combination or a placeholder without specifying a specific type when defining a function parameter.
This type combination or placeholder is the type parameter. When defining Use type parameter (type parameter), use type argument (type argument) when actually calling
The initial calculation function is converted into a type parameter function as follows:
// T 是一个类型形参,在定义函数时类型是不确定的,这里的 any 是 go 泛型定义好的一组类型组合 func Test[T any](a,b T) T { return a + b } // 调用时传入类型实参,伪代码Test[int](1,2) Test(1,2)
By introducing## The concepts of #type formal parameters and type actual parameters allow a function to handle multiple different types of data. This programming method is called generic programming
Why are they generics?
In the previous addition example, in addition to using generics, you can also implement dynamic data type processing through Go's interface reflection. . The functions that generics can achieve can also be basically achieved through interface reflection. However, if you have used reflection, you will understand that the reflection mechanism has many problems:- It is troublesome to use and requires strong logical thinking.
- Loss of compile-time type checking, prone to bugs
- Poor performance
Example of Go generics
Generic function// Add sums the values of T. It supports string, int, int64 and float64
//
// @Description A simple additive generic function
// @Description 一个简单的加法泛型函数
// @parameter a, b T string | int | int64 | float64 "generics parameter"
// @return c T string | int | int64 | float64 "generics return"
func Add[T string | int | int64 | float64](a, b T) T {
return a + b
}
// 使用
Add(1, 2)
Add(1.0,2.0)
Generic type// MyChan Custom generics chan type
// 一个泛型通道,可用类型实参 int 或 string 实例化
type MyChan[T int | string] chan T
Declaration type constraint )Type restrictions in Go are implemented through interfaces
// CustomizationGenerics custom generics // // @Description custom generics, which are type restrictions // @Description ~is a new symbol added to Go 1.18, and the ~ indicates that the underlying type is all types of T. ~ is pronounced astilde in English // @Description 自定义泛型,即类型限制 // @Desciption ~ 是 Go 1.18 新增的符号,~ 表示底层类型是T的所有类型。~ 的英文读作 tilde // // @Example With the addition of ~, MyInt can be used, otherwise there will be type mismatch // @Example 加上 ~,那么 MyInt 自定义的类型能够被使用,否则会类型不匹配 type CustomizationGenerics interface { ~int | ~int64 }
[Related recommendations:
Go video tutorialThe above is the detailed content of What are generics in golang. For more information, please follow other related articles on the PHP Chinese website!

Golang is more suitable for high concurrency tasks, while Python has more advantages in flexibility. 1.Golang efficiently handles concurrency through goroutine and channel. 2. Python relies on threading and asyncio, which is affected by GIL, but provides multiple concurrency methods. The choice should be based on specific needs.

The performance differences between Golang and C are mainly reflected in memory management, compilation optimization and runtime efficiency. 1) Golang's garbage collection mechanism is convenient but may affect performance, 2) C's manual memory management and compiler optimization are more efficient in recursive computing.

ChooseGolangforhighperformanceandconcurrency,idealforbackendservicesandnetworkprogramming;selectPythonforrapiddevelopment,datascience,andmachinelearningduetoitsversatilityandextensivelibraries.

Golang and Python each have their own advantages: Golang is suitable for high performance and concurrent programming, while Python is suitable for data science and web development. Golang is known for its concurrency model and efficient performance, while Python is known for its concise syntax and rich library ecosystem.

In what aspects are Golang and Python easier to use and have a smoother learning curve? Golang is more suitable for high concurrency and high performance needs, and the learning curve is relatively gentle for developers with C language background. Python is more suitable for data science and rapid prototyping, and the learning curve is very smooth for beginners.

Golang and C each have their own advantages in performance competitions: 1) Golang is suitable for high concurrency and rapid development, and 2) C provides higher performance and fine-grained control. The selection should be based on project requirements and team technology stack.

Golang is suitable for rapid development and concurrent programming, while C is more suitable for projects that require extreme performance and underlying control. 1) Golang's concurrency model simplifies concurrency programming through goroutine and channel. 2) C's template programming provides generic code and performance optimization. 3) Golang's garbage collection is convenient but may affect performance. C's memory management is complex but the control is fine.

Goimpactsdevelopmentpositivelythroughspeed,efficiency,andsimplicity.1)Speed:Gocompilesquicklyandrunsefficiently,idealforlargeprojects.2)Efficiency:Itscomprehensivestandardlibraryreducesexternaldependencies,enhancingdevelopmentefficiency.3)Simplicity:


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

SublimeText3 English version
Recommended: Win version, supports code prompts!

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.

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

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

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function