Golang : How To Use Panic and Recover
In this tutorial we will understand how panic function works and how to "interrupt and recover" from the panic.
First, let's examine Panic function
package main
import "fmt"
func startPanic() {
defer func() {
fmt.Println("This will APPEAR")
}()
panic("noooo!")
}
func main() {
fmt.Println("Starting to panic...")
startPanic()
fmt.Println("This WILL NOT APPEAR ")
}
Output :
Starting to panic..
This will APPEAR
panic: noooo!
as you can see from the output. The string "This WILL NOT APPEAR" .... well, will not appear because the Panic function was invoked before the fmt.Println("This WILL NOT APPEAR ").
There are times when we need to recover from the panic and move on with life. This code below will demonstrate just that :
package main
import "fmt"
func startPanic() {
defer func() {
if error := recover(); error != nil {
fmt.Println("Recovering....", error)
}
}()
panic("noooo!")
}
func main() {
fmt.Println("Starting to panic...")
startPanic()
fmt.Println("This will APPEAR because of Recover")
}
Output :
Starting to panic...
Recovering.... noooo!
This will APPEAR because of Recover
What happen here is that we manage to catch the error with the recover() function.
if error := recover(); error != nil {
fmt.Println("Recovering....", error)
}
You can further enhance the error handling depending on your needs. Learn more at http://blog.golang.org/error-handling-and-go
Hope this tutorial will be helpful for those learning Go.
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+17.4k Golang : How to make a file read only and set it to writable again?
+16.5k Golang : read gzipped http response
+11.4k Golang : How to detect a server/machine network interface capabilities?
+14.9k Golang : Accurate and reliable decimal calculations
+7k Golang : Of hash table and hash map
+9.5k Golang : Load ASN1 encoded DSA public key PEM file example
+9.4k Golang : Find correlation coefficient example
+30.1k Get client IP Address in Go
+9k Golang : Generate random Chinese, Japanese, Korean and other runes
+4.8k Golang : Display packages names during compilation
+4.5k MariaDB/MySQL : Form select statement or search query with Chinese characters