golang中的静态局部变量

前端之家收集整理的这篇文章主要介绍了golang中的静态局部变量前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
可以在Golang中定义一个可以将值从一个函数调用维持到另一个的局部变量吗?在C中,我们可以使用保留字static来实现.

C中的示例:

int func() {
    static int x = 0; 
    x++;
    return x;
}
使用 closure

Function literals are closures: they may refer to variables defined in
a surrounding function. Those variables are then shared between the
surrounding function and the function literal,and they survive as
long as they are accessible.

它不一定在全局范围内,就在函数定义之外.

func main() {

    x := 1

    y := func() {
        fmt.Println("x:",x)
        x++
    }

    for i := 0; i < 10; i++ {
        y()
    }
}

(Go Playground上的样品)

原文链接:https://www.f2er.com/go/186984.html

猜你在找的Go相关文章