内容简介:错误处理前报错后程序退出
错误处理前
package main import "fmt" func test(){ num1 := 10 num2 := 0 res := num1 / num2 //0不能做除数 fmt.Println(res) } func main(){ //测试 test() fmt.Println("执行结果") }
报错后程序退出
错误处理后
package main import "fmt" func test(){ defer func() { err := recover() if err != nil { //说明捕获到异常 fmt.Print("err=",err) } }() num1 := 10 num2 := 0 res := num1 / num2 fmt.Println(res) } func main(){ //测试 test() fmt.Println("执行结果") }
进行错误处理后,程序不会轻易挂掉,如果加入预警代码,就可以让程序更加的健壮!
以上所述就是小编给大家介绍的《Go错误处理》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Beginning XML with DOM and Ajax
Sas Jacobs / Apress / 2006-06-05 / USD 39.99
Don't waste time on 1,000-page tomes full of syntax; this book is all you need to get ahead in XML development. Renowned web developer Sas Jacobs presents an essential guide to XML. Beginning XML with......一起来看看 《Beginning XML with DOM and Ajax》 这本书的介绍吧!