


Using the defer
keyword in Go language can delay code execution until the end of the function. In development, we often use the defer
keyword to complete the aftermath work, such as closing open file descriptors, closing connections, and releasing resources.
func demo0() { fileName := "./test.txt" f, _ := os.OpenFile(fileName, os.O_RDONLY, 0) defer f.Close() contents, _ := ioutil.ReadAll(f) fmt.Println(string(contents))}
defer
The keyword usually follows immediately after the resource opening code to prevent subsequent forgetting to release the resource. The code declared by defer will not actually be executed until the end of the function. Although defer is simple and easy to use, but if you ignore its features, you will face confusion during development . Therefore, I summarized the five major features of defer and gradually introduced the features of defer through 8 demos.
Feature 1: Calling order when multiple defers are used: first in, last out
When multiple defer keywords are used, the defer statement declared first is called later. Similar to the "stack" first-in-last-out feature, this feature of defer is also easy to understand. Resources opened by first may be relied upon by subsequent code, so ## It is safe to release after #.
func demo1() { for i := 0; i Feature 2: The scope is the current function, and there are different defer stacks under different functions<h2></h2>Run demo2. It can be seen from the results that the first anonymous function and the second anonymous function The order of defer execution of functions does not matter. <p>The defer scope is only the current function and is executed at the end of the current function, so there are different defer stacks under different functions. <br></p><pre class="brush:php;toolbar:false">func demo2() { func() { defer fmt.Println(1) defer fmt.Println(2) }() fmt.Println("=== 新生代农民工啊 ===") func() { defer fmt.Println("a") defer fmt.Println("b") }()}// 2// 1// === 新生代农民工啊 ===// b// a
Feature 3: Function parameters after defer are confirmed at the time of declaration (precalculated parameters)
Run demo3_1, according to the results, we can conclude: defer inThe value of the formal parameter n has been confirmed when is declared, not when is executed; therefore, no matter how the subsequent variable num changes, it will not affect the output result of defer.
func demo3_1() { num := 0 defer func(n int) { fmt.Println("defer:", n) }(num) // 等同 defer fmt.Println("defer:", num) for i := 0; i Run demo3_2, why is the final output result of defer here the same as the variable num? Because pointers are used here. <p>defer <br>When declaring<strong>, the address pointed by the formal parameter p pointer has been confirmed, pointing to the variable num; subsequently the variable num changes. So when defer </strong> is executed<strong>, the output is the current value of the variable num pointed to by the p pointer. </strong></p><pre class="brush:php;toolbar:false">func demo3_2() { num := 0 p := &num defer func(p *int) { fmt.Println("defer:", *p) }(p) for i := 0; i Look at demo3_3 again. The variables printed by defer are not passed in through function parameters. The "global variable" num is only obtained when defer<p> is executed, so the output result of defer is the same as the variable. num is consistent. <strong><pre class="brush:php;toolbar:false">func demo3_3() { num := 0 defer func() { fmt.Println("defer:", num) }() for i := 0; iFeature 4: return and defer execution order: return first defer then
Run demo4_1, you can find that defer and return are executed at the end of the function, but return is executed before defer;
func demo4_1() (int, error) { defer fmt.Println("defer") return fmt.Println("return")}// return// defer
This is obvious from the output results
, but when the execution order of return and defer and the**function return value** "meet", Many complex scenarios will result.
In demo4_2, the function uses to name the return value
, and the final output result is 7. It has gone through the following processes:
- (First) the variable num is used as the return value, and the initial value is 0;
- (Second) Then The variable num is assigned a value of 10;
- (Then) when return, the variable num is reassigned a value of 2 as the return value;
- (Finally) the variable num is used as the return value, and the final function return result is 7;
-
func demo4_2() (num int) { num = 10 defer func() { num += 5 }() return 2}// 7
Let’s look at another example.
anonymous return value
, and the final result output is 2. The process is as follows:
- Enters the function, and the return value variable is not created at this time;
- creates the variable num and assigns the value to 10; When
- return, create a function return value variable and assign it a value of 2; you can regard this return value variable as an anonymous variable, or as a, b, c, or d variable ..., but it is not the variable num;
- defer, no matter how you modify the variable num, it has nothing to do with the function return value;
- Therefore, the final function return result is 2;
-
func demo4_3() int { num := 10 defer func() { num += 5 }() return 2}// 2
Feature 5: When panic occurs, the declared defer will pop out of the stack and execute
Run demo5_1, you can see that when panic occurs, Trigger the declared defer to pop out of the stack and then panic. However, the defer declared after the panic will not be executed.
func demo5_1() { defer fmt.Println(1) defer fmt.Println(2) defer fmt.Println(3) panic("没点赞异常") // 触发defer出栈执行 defer fmt.Println(4) // 得不到执行}
It is precisely by using this feature that panic can be captured through recover in defer to prevent the program from crashing.
func demo5_2() { defer func() { if err := recover(); err != nil { fmt.Println(err, "问题不大") } }() panic("没点赞异常") // 触发defer出栈执行 // ...}
Attached
Full code:
github.com/newbugcoder/learngo/tre...
The above is the detailed content of Use eight demos to understand the five major features of Go language defer. 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

Dreamweaver CS6
Visual web development tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

WebStorm Mac version
Useful JavaScript development tools

Atom editor mac version download
The most popular open source editor

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.
