一、Painc用法是:用於拋出錯誤。Recover()用法是:將Recover()寫在defer中,而且在可能發生panic的地方以前,先調用此defer的東西(讓系統方法域結束時,有代碼要執行。)當程序遇到panic的時候(固然,也能夠正常的調用出現的異常狀況),系統將跳事後面的代碼,進入defer,若是defer函數中recover(),則返回捕獲到的panic的值。ide
二、代碼:函數
package main import "fmt" func main() { fmt.Printf("hello world my name is %s, I'm %d\r\n", "songxingzhu", 26) defer func() { if err := recover(); err != nil { fmt.Println("出了錯:", err) } }() myPainc() fmt.Printf("這裏應該執行不到!") } func myPainc() { var x = 30 var y = 0 //panic("我就是一個大錯誤!") var c = x / y fmt.Println(c) }
三、執行結果:code
Atom Runner: main.go hello world my name is songxingzhu, I'm 26 出了錯: runtime error: integer divide by zero Exited with code=0 in 1.667 seconds