doufu8127 2019-06-11 09:54 采纳率: 100%
浏览 10
已采纳

成功执行函数后或出现紧急情况时如何知道延迟函数

I need to write some business logic in defer function. Control flow in defer should be based on whether the defer is executed after the system panicked or after the successful execution of the function.

package main

import "log"

func b() {
    panic("panicked in b")
}
func a() {

    b()
}
func main() {
    defer func() {
     // If panicked 
         log.Println("panicked")
         // if called after function successfully executed
         log.Println("Success")
         /* 
            How to understand if defer is triggered by panic or after function returned successfully.
         */
    }()
    a()
    log.Println("main code")
}

Expected: Defer should be able to know its called by panic by any possible way

  • 写回答

1条回答 默认 最新

  • douxing1850 2019-06-11 10:04
    关注

    You can use recover to catch the panic:

    defer func() {
        if err := recover(); err != nil {
            fmt.Println("panic")
        } else {
            fmt.Println("successful")
        }
    }()
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥16 Qphython 用xlrd读取excel报错
  • ¥15 单片机学习顺序问题!!
  • ¥15 ikuai客户端多拨vpn,重启总是有个别重拨不上
  • ¥20 关于#anlogic#sdram#的问题,如何解决?(关键词-performance)
  • ¥15 相敏解调 matlab
  • ¥15 求lingo代码和思路
  • ¥15 公交车和无人机协同运输
  • ¥15 stm32代码移植没反应
  • ¥15 matlab基于pde算法图像修复,为什么只能对示例图像有效
  • ¥100 连续两帧图像高速减法