内容简介:当程序遇到致命错误时,就是停止运行Go 通过
当程序遇到致命错误时,就是停止运行
Go 通过 panic 函数来报告致命错误
func testError1() { panic(errors.New("this is a error")) }
代码执行中出现错误
比如数组越界
index := 4 arr := []int{1,2,3} _ = arr[index]
那如何“拦截”运行时发生的错误?
recover函数
会返回一个interface{} 类型的结果,如果程序发生错误,就会返回非nil
和defer函数结合使用,就会将错误捕捉到进行处理
func testError() { defer func() { if e := recover(); e != nil { fmt.Printf("panic : %s\n", e) } }() index := 4 arr := []int{1,2,3} _ = arr[index] }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Code Complete
Steve McConnell / Microsoft Press / 2004-6-19 / GBP 40.99
在线阅读本书 Widely considered one of the best practical guides to programming, Steve McConnells original CODE COMPLETE has been helping developers write better software for more than a decade. Now......一起来看看 《Code Complete》 这本书的介绍吧!
JS 压缩/解压工具
在线压缩/解压 JS 代码
图片转BASE64编码
在线图片转Base64编码工具