Parameter passing means that during the transfer process of the program, the actual parameters will pass the parameter values to the corresponding formal parameters, and then the process of data processing and return is implemented in the function. The following article mainly introduces it to you. Regarding relevant information about parameter passing in Golang, friends in need can refer to it.
Preface
This article mainly introduces to you the relevant content about Golang parameter passing, and shares it for your reference and study. There is not much to say below. Having said that, let’s take a look at the detailed introduction.
Regarding parameter passing, there is this sentence in the Golang documentation:
after they are evaluated, the parameters of the call are passed by value to the
function and the called function begins execution.
Function call parameters are all passed by value, not by pointer or reference. It has been derived from testing that when the parameter variable is a pointer or implicit pointer type, the parameter passing method is also by value (copy of the pointer itself)
Slice is one of the most commonly used data structures. Slice is used below. As an example, explain Golang’s parameter passing mechanism.
Slice data structure is as follows:
##Sample code:
package main import "fmt" func main(){ slice := make([]int, 3, 5) fmt.Println("before:", slice) changeSliceMember(slice) fmt.Println("after:", slice) } func changeSliceMember(slice []int) { if len(slice) > 1 { slice[0] = 9 } }
The function execution result is:
befor:[0 0 0] after:[9 0 0]
Explanation:
As can be seen from the data structure diagram, Slice can be understood as a structure type, including three fields: the address of the first element of the underlying array, the array len, and the capacity, and the slice object. During the parameter value transfer process, the values of the three fields are passed. In fact, the memory address of the slice in the changeSliceMember function is different from the memory address of the slice in main, but the field values are the same, and the first field The value of Pointer is the address of the first element of the underlying array, so the element content can be changed directly.Can be compared with the following code to understand:
package main func main() { value := new(int) modifyFunc(value) println("main:", value) } func modifyFunc(value *int) { value = nil println("modifyFunc:", value) }
Execution result:
modifyFunc: 0x0 main: 0xc820049f30It can be seen that even if the value is passed as a pointer, the variable value has not changed The value in main, because the value of value in modifyFunc is a pointer, is the same as the value in main, but the two objects themselves are two objects. Readers can understand it in detail
The above is the detailed content of Parameter passing methods in Golang. For more information, please follow other related articles on the PHP Chinese website!

go语言有缩进。在go语言中,缩进直接使用gofmt工具格式化即可(gofmt使用tab进行缩进);gofmt工具会以标准样式的缩进和垂直对齐方式对源代码进行格式化,甚至必要情况下注释也会重新格式化。

本篇文章带大家了解一下golang 的几种常用的基本数据类型,如整型,浮点型,字符,字符串,布尔型等,并介绍了一些常用的类型转换操作。

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 自带的 HttpClient 的超时机制,希望对大家有所帮助。

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.
