英文: In Go, how can I get the TypeOf a type using an anonymous field method? 问题 如何使用匿名字段(或超类)获取结构体的正确...
Is map[string]interface{} faster that map[string]string in golang? or are "strconv" functions too slow?
英文: Is map[string]interface{} faster that map[string]string in golang? or are "strconv" fu...
Go的发展是否足够成熟,可以将其用于构建操作系统的核心部分?
英文: Is Go developed enough to use it to make the core of an operating system? 问题 我想知道Go语言的发展是否已经足够成熟...
子字符串和Go垃圾收集器
英文: substrings and the Go garbage collector 问题 在Go语言中,当对字符串进行子串操作时,不会分配新的内存。相反,子串的底层表示包含一个数据指针,该指针是原...
‘go install’ 尝试安装到 /usr/lib/go 而不是我的 GOPATH。权限被拒绝
英文: 'go install' trying to install to /usr/lib/go instead of my GOPATH. Permission denied 问题...
Go编程语言接口概念理解
英文: Go Programming Language Interface Conceptual Understanding 问题 我正在编写一个示例的Http客户端/服务器代码,以便更多地了解Go。...
如何以Go语言的惯用方式预分配并填充一个指针切片?
英文: How to preallocate and fill a slice of pointers in a go-idiomatic way? 问题 package main import &q...
在Go中安排轮询任务
英文: Scheduled polling task in Go 问题 我已经编写了一些代码,可以同时轮询URL,每30分钟一次: func (obj * MyObj) Poll() { for ;;...
在datastore.Query.Run(c).Next(x)上出现奇怪的错误。
英文: Getting weird error on datastore.Query.Run(c).Next(x) 问题 我以前从未遇到过这个特定的错误,当我在谷歌上搜索时,根本找不到任何提到它的内容...
如何将Golang项目(一组包)放到Github上?
英文: How to place Golang project (a set of packages) to Github? 问题 这是一个来自Golang教程http://golang.org/do...
11727