


How to use the keyword defer and recover in Golang function together
Golang is an efficient, concise and easy-to-learn programming language that was originally developed by Google and first released in 2009. It is designed to improve programmer productivity and code clarity. In Golang, the function keywords defer and recover are often used together to handle errors that may occur in the program. This article will introduce the use of these two keywords and illustrate their practical application through some examples.
1. How to use defer
defer is a keyword, which is used to delay the execution of some specific code after the function is executed. Delayed execution means that these codes are added to a stack and executed one after another before the function returns.
The syntax of the defer statement is as follows:
defer function_name(argument)
Where, function_name is the name of the function that needs to be delayed, and argument is an optional parameter list . When the function completes execution and the return statement is executed, all defer statements will be executed in sequence.
The following is a sample program that demonstrates the specific usage of the defer statement:
package main import "fmt" func main() { defer fmt.Println("Hello") fmt.Println("World") }
This program will output "World
Hello" because after executing fmt.Println("World "), the program executes the defer statement and adds it to the stack. When the main() function returns, the stack is popped in sequence, and the last thing executed is the print statement in the defer statement.
2. How to use recover
When the program encounters an error, it will stop execution and exit. But in some cases, we may want the program to continue executing and handle errors. In Golang, we can use the recover keyword to achieve this.
recover is a built-in function only used in the defer statement, which is used to recover from panic. When a program panics, it will forcefully stop execution and resume program execution by calling the recover function in the defer statement.
The following is a sample program that demonstrates the specific usage of the recover statement:
package main import ( "fmt" "os" ) func main() { defer func() { if r := recover(); r != nil { fmt.Println("Recovered:", r) } }() fmt.Println("Start") panic("Something wrong") fmt.Println("End") os.Exit(0) }
In this program, we use the recover function in the defer statement of the main() function. The anonymous function in the defer statement determines whether panic occurs, prints relevant information and resumes program execution when panic occurs.
When executing this program, we will first see the output "Start", and then the program will throw a panic, the execution control flow will be interrupted, and the print statement will not be executed. But since we use the recover function to resume the execution of the program, "Recovered: Something wrong" will be output before the program is terminated.
3. Combined use of defer and recover
In actual programming, defer and recover are usually used together. For example, when a program needs to roll back when an operation fails, we can create a transaction before the operation starts, commit the transaction after the operation is completed, but when the operation fails, use the defer statement to roll back the operation. At the same time, when encountering an abnormal error, we can use the recover function to resume the execution of the program and perform specific operations.
The following is a sample program about database operations, which demonstrates how defer and recover are used together:
package main import ( "database/sql" "fmt" "log" _ "github.com/go-sql-driver/mysql" ) func main() { db, err := sql.Open("mysql", "username:password@tcp(host:port)/database") if err != nil { log.Fatal(err) } defer db.Close() tx, err := db.Begin() if err != nil { log.Fatal(err) } defer func() { if r := recover(); r != nil { fmt.Println("Transaction Rollback:", r) tx.Rollback() } }() _, err = tx.Exec("INSERT INTO users(name) VALUES (?)", "Alice") if err != nil { panic(err) } _, err = tx.Exec("INSERT INTO users(name) VALUE (?)", "Bob") if err != nil { panic(err) } err = tx.Commit() if err != nil { panic(err) } }
In this program, we open the database connection and create it before the operation starts. A transaction. When an abnormal error occurs during program execution, panic will be triggered, and the program control flow will immediately shift to the execution of the defer statement in the anonymous function. In this statement, we use the recover function to restore the normal execution of the program and perform transaction rollback.
When the program executes successfully, the transaction will be committed and the database connection will be closed. When an abnormal error occurs, the transaction will be rolled back after printing the error message, the database connection will be closed, and the program will exit.
4. Summary
defer and recover are important keywords in Golang. They are often used to handle exception errors that occur in programs. We can use the defer keyword to delay the execution of code that requires special processing after the function is executed. When an abnormal error occurs in the program, we can use the recover keyword to resume the execution of the program and handle the error. In actual programming, we can use these two keywords in combination to handle abnormal situations that may occur in the program and ensure program stability and reliability.
The above is the detailed content of How to use the keyword defer and recover in Golang function together. For more information, please follow other related articles on the PHP Chinese website!

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

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

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

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

Hot Topics



Reading and writing files safely in Go is crucial. Guidelines include: Checking file permissions Closing files using defer Validating file paths Using context timeouts Following these guidelines ensures the security of your data and the robustness of your application.

How to configure connection pooling for Go database connections? Use the DB type in the database/sql package to create a database connection; set MaxOpenConns to control the maximum number of concurrent connections; set MaxIdleConns to set the maximum number of idle connections; set ConnMaxLifetime to control the maximum life cycle of the connection.

The difference between the GoLang framework and the Go framework is reflected in the internal architecture and external features. The GoLang framework is based on the Go standard library and extends its functionality, while the Go framework consists of independent libraries to achieve specific purposes. The GoLang framework is more flexible and the Go framework is easier to use. The GoLang framework has a slight advantage in performance, and the Go framework is more scalable. Case: gin-gonic (Go framework) is used to build REST API, while Echo (GoLang framework) is used to build web applications.

JSON data can be saved into a MySQL database by using the gjson library or the json.Unmarshal function. The gjson library provides convenience methods to parse JSON fields, and the json.Unmarshal function requires a target type pointer to unmarshal JSON data. Both methods require preparing SQL statements and performing insert operations to persist the data into the database.

The FindStringSubmatch function finds the first substring matched by a regular expression: the function returns a slice containing the matching substring, with the first element being the entire matched string and subsequent elements being individual substrings. Code example: regexp.FindStringSubmatch(text,pattern) returns a slice of matching substrings. Practical case: It can be used to match the domain name in the email address, for example: email:="user@example.com", pattern:=@([^\s]+)$ to get the domain name match[1].

Backend learning path: The exploration journey from front-end to back-end As a back-end beginner who transforms from front-end development, you already have the foundation of nodejs,...

Using predefined time zones in Go includes the following steps: Import the "time" package. Load a specific time zone through the LoadLocation function. Use the loaded time zone in operations such as creating Time objects, parsing time strings, and performing date and time conversions. Compare dates using different time zones to illustrate the application of the predefined time zone feature.

Which libraries in Go are developed by large companies or well-known open source projects? When programming in Go, developers often encounter some common needs, ...
