golang panic打印

golang panic打印

(1.)示例代码
package main

import (
    "fmt"
    "os"
  "runtime"
)

func main() {
    defer func() {
        if e := recover(); e != nil {
            panic.PrintStack()
            os.Exit(1)
        }
    }()

    zero := 0
    x := 3 / zero
    fmt.Println("x=", x)
}

// PrintStack 打印堆栈信息
func PrintStack() {
    var buf [4096]byte
    n := runtime.Stack(buf[:], false)
    fmt.Printf("==> %s\n", string(buf[:n]))
}

示例二:

package main

import (
	"fmt"
	"runtime"
)

func stupidCode() {
	n := 0
	fmt.Println(1/ n)
}

func main() {
	defer func() {
		if err := recover(); err != nil {
			for i := 0; ; i++ {
				pc, file, line, ok := runtime.Caller(i)
				if !ok {
					break
				}
				fmt.Println(pc, file, line)
			}
		}
	}()
	stupidCode()
}

package main
 
import (
	"fmt"
	"runtime"
)
 
func stupidCode() {
	n := 0
	fmt.Println(1/ n)
}
 
func main() {
	defer func() {
		if err := recover(); err != nil {
			for i := 0; ; i++ {
				pc, file, line, ok := runtime.Caller(i)
				if !ok {
					break
				}
				fmt.Println(pc, file, line)
			}
		}
	}()
	stupidCode()
}

示例三:

import (
    "fmt"
    "runtime/debug"
)

func test3() {
    // 可以通过 debug.PrintStack() 直接打印,也可以通过 debug.Stack() 方法获取堆栈然后自己打印
    fmt.Printf("%s", debug.Stack())
    debug.PrintStack()
}
参考链接

https://blog.csdn.net/fengfengdiandia/article/details/80058805

https://yuerblog.cc/2019/09/26/golang-利用recover捕获panic异常/

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值