douzui0143 2017-12-02 12:36
浏览 104
已采纳

在Go中使用defer

What is the use of defer in Go? The language documentation says it is executed when the surrounding function returns. Why not just put the code at end of given function?

  • 写回答

6条回答 默认 最新

  • dongren5293 2017-12-02 12:44
    关注

    We usually use defer to close or deallocate resources.

    A surrounding function executes all deferred function calls before it returns, even if it panics. If you just place a function call at the end of a surrounding function, it is skipped when panic happens.

    Moreover a deferred function call can handle panic by calling the recover built-in function. This cannot be done by an ordinary function call at the end of a function.

    Each deferred call is put on stack, and executed in reverse order when the surrounding function ends. The reversed order helps deallocate resources correctly.

    The defer statement must be reached for a function to be called.

    You can think of it as another way to implement try-catch-finally blocks.

    Closing like try-finally:

    func main() {
        f, err := os.Create("file")
        if err != nil {
            panic("cannot create file")
        }
        defer f.Close()
        // no matter what happens here file will be closed
        // for sake of simplicity I skip checking close result
        fmt.Fprintf(f,"hello")
    }
    

    Closing and panic handling like try-catch-finally

    func main() {
        defer func() {
            msg := recover()
            fmt.Println(msg)
        }()
        f, err := os.Create(".") // . is a current directory
        if err != nil {
            panic("cannot create file")
        }
        defer f.Close()
        // no matter what happens here file will be closed
        // for sake of simplicity I skip checking close result
        fmt.Fprintf(f,"hello")
    }
    

    The benefit over try-catch-finally is that there is no nesting of blocks and variable scopes. This simplifies the structure of the surrounding function.

    Just like finally blocks, deferred function calls can also modify the return value if they can reach the returned data.

    func yes() (text string) {
        defer func() {
           text = "no"
        }()
        return "yes"
    }
    
    func main() {
        fmt.Println(yes())
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(5条)

报告相同问题?

悬赏问题

  • ¥15 网络科学导论,网络控制
  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)