猿问

如何获得对延迟函数的引用?

这篇文章指出:“defer 语句将函数调用推送到列表中。” 我想知道我是否可以从程序中的另一个地方访问该列表中的元素,然后调用它们?我可以多次调用它们吗?我假设我有一个对具有延迟行为的函数的引用(如果有帮助)。


所以,这是我想要做的一个简短的例子:


func main {

    doStuff = func() {

        // open database connections

        // write temporary files

        // etc...


        defer func() {

            // close database connections

            // delete temporary files

            // etc...

        }()

    }


    AwesomeApplication(doStuff)

}


func AwesomeApplication(doStuff func()) {

    // Now, can I get a reference to the defer function within `doStuff`?

    // No, I can't just define the defer function somewhere an pass it

    // with `doStuff`.  Think of this as a curiosity I want to satisfy,

    // not a real use case.

}


12345678_0001
浏览 183回答 1
1回答

HUH函数

defer存储调用的“列表”是完全特定于实现的,因此您没有可靠的方法来获取此列表。1&nbsp;,&nbsp;2&nbsp;*g 编译器系列(虽然有点旧)的实现细节可以在 Russ Cox 的研究博客中找到。延迟函数与当前的 goroutine (&nbsp;g->Defer)相关联,并且(在 *g 系列的情况下)由当前堆栈指针标识。如果当前堆栈帧与存储在最顶层Defer条目中的堆栈帧匹配,则调用此函数。有了这些知识,就可以使用 cgo 访问延迟函数列表。你得知道当前堆栈指针函数地址当前的协程但是,我不建议使用它。您所描述的用例的一般解决方案是具有这样的功能:func setupRoutines() (setUp, tearDown func()) {&nbsp; &nbsp; // store db connection object and such&nbsp; &nbsp; return func() { /* connect db and such */ }, func() { /* close db and such */ }}在您的代码中,您可以共享该tearDown函数,该函数将使用defer. 这样,您仍然可以拥有所有数据库连接和本地连接,但您可以共享初始化/断开连接功能。小提琴演奏如果你真的有兴趣玩转unsafeC,你可以使用下面的代码作为模板。检查/运行时.c:// +build gc#include <runtime.h>void ·FirstDeferred(void* foo) {&nbsp; &nbsp; foo = g->defer->fn;&nbsp; &nbsp; FLUSH(&foo);}检查/检查.gopackage inspectimport "unsafe"func FirstDeferred() unsafe.Pointerdefer.gopackage mainimport "defer/inspect"func f(a, b int) {&nbsp; &nbsp; println("deferred f(", a, b, ")")}func main() {&nbsp; &nbsp; defer f(1, 2)&nbsp; &nbsp; println( inspect.FirstDeferred() )}此代码(基于this)使您可以访问当前的 go 例程 ( g) 以及defer它的属性。因此,您应该能够访问指向该函数的指针并将其包装在 go 中FuncVal并返回它。
随时随地看视频慕课网APP

相关分类

Go
我要回答