Initialization method: 1. Use the "ins := structure type name {field 1: value, field 2: value,...}" statement to initialize, which is suitable for selectively filling structures with many fields; 2. Use the "ins := structure type name {value of field 1, value of field 2,...}" statement to initialize, which is suitable for structures with fewer fields.
The operating environment of this tutorial: Windows 10 system, GO 1.11.2, Dell G3 computer.
The structure can directly initialize the member variables when instantiating it. There are two forms of initialization: the field "key-value pair" form and the list form of multiple values. Initialization in the form of key-value pairs is suitable. Selectively fill structures with more fields. The list form of multiple values is suitable for structures with fewer fields.
Use "key value pair" to initialize the structure
The structure can use "key value pair" (Key value pair) to initialize the fields. Each "key" (Key) corresponds to a field in the structure, and the "value" (Value) of the key corresponds to the value that the field needs to be initialized.
The filling of key-value pairs is optional, and fields that do not require initialization do not need to be filled in the initialization list.
The default value of the field after the structure is instantiated is the default value of the field type, for example, the value is 0, the string is "" (empty string), the Boolean is false, the pointer is nil, etc.
1) The writing format of the key-value pair initialization structure
The format of the key-value pair initialization is as follows:
ins := 结构体类型名{ 字段1: 字段1的值, 字段2: 字段2的值, … }
The following is a description of each part Description:
Structure type: The type name when defining the structure.
Field 1, Field 2: field names of structure members, field names can only appear once in the field initialization list of structure type names.
The value of field 1, the value of field 2: the initial value of the structure member field.
The key values are separated by :
, and the key value pairs are separated by ,
.
2) Example of using key-value pairs to fill a structure
The following example describes the relationship between the characters in the family, just like the children's song: "Dad's dad is "Grandpa", multi-level children can be used to describe and establish relationships between characters. The code for filling the structure in the form of key-value pairs is as follows:
type People struct { name string child *People } relation := &People{ name: "爷爷", child: &People{ name: "爸爸", child: &People{ name: "我", }, }, }
The code description is as follows:
-
Line 1 defines the People structure.
Line 2, the string field of the structure.
Line 3, the structure pointer field of the structure, the type is *People.
Line 6, after relation takes the address from the People type, an instance of type *People is formed.
Line 8, when initializing child, it needs a value of type *People, and uses the address to initialize a People.
Tip: Structure members can only contain pointer types of the structure. Containing non-pointer types will cause a compilation error.
Use a list of multiple values to initialize the structure
The Go language can ignore the "key" based on the "key-value pair" initialization , that is, you can initialize the fields of a structure with a list of multiple values.
1) Writing format of multiple value list initialization structure
Use commas to separate multiple values in the initialization structure, for example:
ins := 结构体类型名{ 字段1的值, 字段2的值, … }
Use When initializing this format, please note:
All fields of the structure must be initialized.
The filling order of each initial value must be consistent with the declaration order of the fields in the structure.
The initialization forms of key-value pairs and value lists cannot be mixed.
2) Example of multiple value list initialization structure
The following example describes an address structure, and the addresses are required to be in a certain order. , for example:
type Address struct { Province string City string ZipCode int PhoneNumber string } addr := Address{ "四川", "成都", 610000, "0", } fmt.Println(addr)
Run the code, the output is as follows:
{四川 成都 610000 0}
Recommended learning: Golang tutorial
The above is the detailed content of How to initialize member variables of a structure 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语言程序进行编译的命令有两种:1、“go build”命令,可以将Go语言程序代码编译成二进制的可执行文件,但该二进制文件需要手动运行;2、“go run”命令,会在编译后直接运行Go语言程序,编译过程中会产生一个临时文件,但不会生成可执行文件。

go语言需要编译。Go语言是编译型的静态语言,是一门需要编译才能运行的编程语言,也就说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

Zend Studio 13.0.1
Powerful PHP integrated development environment

Notepad++7.3.1
Easy-to-use and free code editor

Atom editor mac version download
The most popular open source editor

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

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.
