英文: What is the advantage of using a pointer to a string instead of a string in Go 问题 这里使用指针的好处是什么? ...
Golang结构字段的名称和将其解组为该结构
英文: Golang structure field's name and unmarshalling into this structure 问题 我写了一个示例程序来说明我的问题,可以在这...
在Golang中,我可以限制某些包具有一组功能吗?
英文: Can I restrict packages have some set of functions in Golang? 问题 我有一些功能类似的包,它们都是用于处理网络请求的。 在每个包中...
有没有一种有效的方法可以在Go语言包之间共享结构?
英文: Is there an efficient way to share structure between golang packages? 问题 我有一个用Go编写的简短程序,其中包含以下文件...
动态创建一个结构体。
英文: Go creating a structure dynamically 问题 这个脚本无法正常工作。我如何通过获取传入变量的类型(例如proc.ReadStat的类型是*linux.Stat,...
不使用存储库路径来管理自己的软件包可能会产生以下影响:
英文: Implications of not using repo path for my own packages 问题 假设我决定按照以下方式组织所有个人开发的包: $GOPATH/ bin/ ...
获取父结构体
英文: Go - get parent struct 问题 我想知道如何获取实例的父结构体。 我不知道如何实现这个。 例如: type Hood struct { name string houses...
Go项目有2个可执行文件。
英文: Go project with 2 executables 问题 大家好,我对Golang还比较新手,我正在编写一个玩具客户端和服务器应用程序,只是为了学习库。 但是我有一个项目文件夹: ph...
Timeout structure in Go
英文: Timeout structure in Go 问题 我正在寻找一种具有存储过期数据功能的存储方式。我的意思是,一种可以指定要存储的数据和超时时间的结构,该值在一段时间后会被删除。 英文: I...
从列表元素中获取值
英文: Golang : Get the value from list element 问题 我正在为你翻译以下内容: 我在尝试从一个存储在列表中的结构体中获取值时遇到了恐慌错误。 fmt.Prin...
4