Go language is a strongly typed language, in which data types can be divided into two types: reference data types and value data types. Reference data types and value data types are slightly different in use. Let's take a closer look at these two data types.
1. Reference data types
Reference data types in Go language include slices, maps, channels, interfaces and pointers. For reference data types, the value of a variable is not just its own value, but a pointer to a memory address. Therefore, when we declare a variable of reference type, a memory address is allocated to it and stored on the stack, and the space pointed to by the memory address is stored in the heap.
- Slice
A slice is a dynamic array that can automatically grow or shrink as needed. Taking a string slice as an example, the declaration and initialization are as follows:
var s1 []string //Declare the slice
s1 = make([]string, 3) //Use the make function to initialize the slice
s2 := []string{"foo", "bar", "baz"} // Directly declare the slice and initialize it
In the Go language, a slice is a pointer to the underlying data, and also contains The length and capacity of the slice, which are the values returned by the len and cap functions. When the number of elements in a slice exceeds the capacity, the Go language will reallocate a larger memory space and then copy the original elements to the new memory space.
- Mapping
Mapping is an unordered collection of key-value pairs, defined using the map keyword in the Go language. Taking a string mapping as an example, the declaration and initialization are as follows:
m1 := make(map[string]int) // Use the make function to initialize the mapping
m2 := map[string]int{" foo": 1, "bar": 2, "baz": 3} // Directly declare the mapping and initialize it
In the Go language, the mapping is also a pointer to the underlying data, and also contains the mapping elements quantity. When the number of elements in the map exceeds the underlying memory capacity, the Go language will reallocate a larger memory space.
- Channel
Channel is a way to transfer data between multiple Ctrips. Use the make function and
var ch1 chan string // Declare the channel
ch1 = make(chan string) // Use the make function to initialize the channel
ch2 := make(chan string, 3) // Use the make function to initialize the buffered channel
ch1 data :=
In the Go language, the channel is also a pointer to the underlying data, which also contains the capacity of the channel and the current number of elements. When the number of elements in the channel exceeds the capacity, the Go language will block the current Ctrip and wait for other Ctrips to take away the elements.
- Interface
An interface is a data type that defines a set of interface methods. Taking a simple interface as an example, the declaration is as follows:
type Caller interface {
Call() bool
}
In the Go language, the interface is also a pointer to the underlying data. , pointing to the structure when implementing the interface. Interfaces are faster than value types because interface methods are not copied by implementation operations.
- Pointer
A pointer is a variable that contains a memory address. The & and * operators are used to declare and use pointers in the Go language. Take a pointer to a string type variable as an example, declare and use it as follows:
var p1 *string // Declare the pointer
s1 := "foo"
p1 = &s1 // Change the pointer Points to the memory address of the string variable
fmt.Println("s1:", s1, "p1:", *p1) // Get the value of the string variable through the pointer
In the Go language, The variable pointed to by the pointer needs to be declared in advance. There is no pointer operator in Go language similar to that in C language.
2. Value data types
Value data types in Go language include boolean, integer, floating point, complex number, character, string and array. For variables of value type, the value of the variable and the variable itself are stored on the stack.
- Boolean type
The Boolean type has only two values in the Go language: true and false. Since the Boolean type has only one byte, it can effectively reduce the memory footprint when used in large quantities.
- Integer type
The integer type of Go language is divided into signed integer type and unsigned integer type. Signed integer type is divided into int8, int16, int32 and int64. , unsigned integer types are divided into uint8, uint16, uint32 and uint64. When using, it is recommended to use int and uint types as much as possible, because the byte width of these two types is the same on different platforms.
- Floating point type
The floating point type of Go language is divided into two types: float32 and float64. The default is float64 type. When using it, it is recommended to use the float64 type whenever possible, because the calculation speed and accuracy of this type are higher than the float32 type.
- Complex number type
Complex number type uses complex64 and complex128 types in Go language to represent real numbers and imaginary numbers. For example, the complex64 type indicates that both the real part and the imaginary part are complex numbers of type float32.
- Character type
Character type is represented by rune in Go language. The range of rune type and int32 type identification are the same. In Go language, you can use single quotes to represent characters.
- String
String is a read-only sequence of characters in Go language. Double quotes are used to represent strings in Go language. Strings in Go language are UTF-8 encoded.
- Array
Array is a data type with fixed length and the same element type in Go language. When using it, you need to declare the length and element type of the array in advance.
Conclusion
The reference data type and the value data type are slightly different in use in the Go language. Through comparison, it can be found that the value data type is stored in the stack, and the location of the variable in the memory does not vary. changes over time (if pointer operations are not used), and the value of a reference data type variable is a pointer pointing to a memory address allocated in the heap. In actual use, reference data types and value data types should be used rationally to achieve optimal performance and effects.
The above is the detailed content of Reference data types and value data types in Go language. 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语言程序在运行之前需要通过编译器生成二进制机器码(二进制的可执行文件),随后二进制文件才能在目标机器上运行。

go语言能编译。Go语言是编译型的静态语言,是一门需要编译才能运行的编程语言。对Go语言程序进行编译的命令有两种:1、“go build”命令,可以将Go语言程序代码编译成二进制的可执行文件,但该二进制文件需要手动运行;2、“go run”命令,会在编译后直接运行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

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.

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.

SublimeText3 Mac version
God-level code editing software (SublimeText3)

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

Zend Studio 13.0.1
Powerful PHP integrated development environment
