drj14664 2019-08-17 06:51
浏览 93
已采纳

其他函数可以共享单个defer func()吗?

I see a lot of examples using defer func() inside of a function. Is there a way to keep from repeating it in various places and call it like a normal function?

In this example (and many others) the defer function is nested inside of another function:

package main

import (
    "fmt"
    "os"
)

func main() {
    defer func() {
        if err := recover(); err != nil {
            fmt.Fprintf(os.Stderr, "Exception: %v
", err)
            os.Exit(1)
        }
    }()

    file, err := os.Open(os.Args[1])
    if err != nil {
        fmt.Println("Could not open file")
    }

    fmt.Printf("%v", file)
}

Is there a way to move the defer func() outside of main() so it can be used by other functions as well?

  • 写回答

1条回答 默认 最新

  • douxuqiao6394 2019-08-17 06:57
    关注

    You can defer any function. Where that function is defined isn't important.

    This is perfectly valid:

    func foo() {
        // Do foo
    }
    
    
    func bar() {
        defer foo()
        // Do something before foo
    }
    
    func baz() {
        defer foo()
        // Do something else before foo
    }
    

    But in this case foo() will be called once for each invocation of bar() and baz(). It's not "shared", except in the sense that you don't have to re-write an anonymous function multiple times.

    Probably the most common example of this is calling Close() in a defer statement:

    func foo() error {
        f, err := os.Open(...)
        if err != nil {
            return err
        }
        defer f.Close() // "Close()" is obviously not defined here
        // do something with f
    }
    

    TL;DR;

    You cannot share a defer statement across functions. But as with any other function, the function invoked by defer, can be called from multiple places.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 错误(10048): “调用exui内部功能”库命令的参数“参数4”不能接受空数据。怎么解决啊
  • ¥15 安装svn网络有问题怎么办
  • ¥15 Python爬取指定微博话题下的内容,保存为txt
  • ¥15 vue2登录调用后端接口如何实现
  • ¥65 永磁型步进电机PID算法
  • ¥15 sqlite 附加(attach database)加密数据库时,返回26是什么原因呢?
  • ¥88 找成都本地经验丰富懂小程序开发的技术大咖
  • ¥15 如何处理复杂数据表格的除法运算
  • ¥15 如何用stc8h1k08的片子做485数据透传的功能?(关键词-串口)
  • ¥15 有兄弟姐妹会用word插图功能制作类似citespace的图片吗?