1 Star 0 Fork 12

陈先生/RunnerGo-management-open

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
test.go 378 Bytes
一键复制 编辑 原始数据 按行查看 历史
wangjiawei 提交于 2023-02-21 11:21 . 第一次提交
package main
import (
"fmt"
)
func square() func() int { //返回一个自己定义的函数类型
var x int = 0
fmt.Println("外部x:", x)
return func() int {
fmt.Println("内部x:", x)
x++
fmt.Println(&x)
return x
}
}
func main() {
//f := square()
////square()
//fmt.Println(f())
////square()
//fmt.Println(f())
var p *int
fmt.Printf("%T\n", p)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/future1980/runnergo-management-open.git
git@gitee.com:future1980/runnergo-management-open.git
future1980
runnergo-management-open
RunnerGo-management-open
open

搜索帮助