英文: Why does Go use its own Code generator? 问题 Go语言目前使用的官方编译器(http://code.google.com/p/go/)目前使用的是一个手...
限制Go语言中的内存分配?
英文: Limit the memory allocation in Go Language? 问题 我正在寻找一种在Go语言中限制内存使用的方法。我的应用程序使用Go语言实现,其中有一个必须加载到主...
One type is coerced into another, can a method to determine the type of the receiver?
英文: One type is coerced into another, can a method to determine the type of the receiver? 问题 如果类型T1和...
如果类型T2基于类型T1,那么从T1到T2是否存在某种形式的“继承”?
英文: If type T2 is based on type T1, is there any sort of "inheritance" from T1 to T2? 问题 如...
从文件中读取JSON数据
英文: reading json data from a file 问题 我正在使用Go编程语言运行一个服务器,当我在浏览器中加载服务器时,会调用temp处理函数,并且getjson.html文件由这...
‘.’ (点号或句号) 在Go的导入语句中有什么作用?
英文: What does the '.' (dot or period) in a Go import statement do? 问题 在Go教程中,以及我查看的大部分Go代码中,...
使用结构体类型的setter不会按预期工作
英文: Using a setter for a struct type does not work as anticipated 问题 使用结构体的setter函数,但是没有按预期工作: packa...
如何在Go编程语言中为数组分配内存?
英文: How do I allocate memory for an array in the go programming language? 问题 我想在Go语言中创建一个大小为N的数组,但我不...
在Go语言中,如何编写多行语句?
英文: In Go, how to write a multi-line statement? 问题 在Go语言中,我们可以使用反斜杠来表示当前语句继续到下一行。 例如, a := b + c + s...
Go vs. Scala 用于实时 web 应用程序
英文: Go vs. Scala for realtime webapps 问题 我正在编写一个使用Websockets在Google地图上更新车辆位置并与司机实时交换消息的Web应用程序。我已经尝试...
11727