英文: What build systems work with Go? 问题 我知道Go源代码附带一个Makefile(在$GOROOT/doc中),我现在正在使用它,但是其他流行的构建系统是否已经...
What can you do in 30 lines of Go? Can you create a useful, complete program that demonstrates its features?
英文: What can you do in 30 lines of Go? Can you create a useful, complete program that demonstrates i...
一些Go接口的例子有哪些?
英文: What are some examples of Go interfaces? 问题 我在这篇有趣的博客文章中发现了关于Go的内容。 我正在尝试理解接口的概念,但是从博客文章中的代码片段中很...
一个goroutine的最小工作大小
英文: minimum work size of a goroutine 问题 有人知道为了使goroutine有益,大致需要多少最小工作量(假设有空闲核心可用于卸载工作)吗? 英文: Does an...
如何在Go中获取终端大小?
英文: How do you get the terminal size in Go? 问题 在Go语言中,如何获取终端大小?在C语言中,可以这样写: struct ttysize ts; ioctl...
Go与Protocol Buffers的集成?
英文: Go integration with Protocol Buffers? 问题 在快速查看了文档之后,我立即开始考虑与现有语言和应用程序的集成,并想知道是否会提供对Protocol Buff...
垃圾回收是否与Go编译器(gc)一起工作?
英文: Does garbage collection work with the Go compiler (gc)? 问题 我注意到gccgo中尚未实现垃圾回收。 http://golang.org...
Go中的函数冲突
英文: Function collisions in Go 问题 Golang 初始化 描述了一种在 Go 编程语言中将方法附加到任意对象的方式。例如,他们展示了一个新定义的 ByteSize 类型的...
你用什么来编写Go代码?
英文: What do you use to write Go 问题 我知道现在可能还为时过早,但我一直在尝试使用Go(Google的编程语言),在gedit中编写代码有点烦人。 所以,我的问题是:你...
如何在不阻塞的情况下判断 goroutine 是否已完成?
英文: How do I find out if a goroutine is done, without blocking? 问题 到目前为止,我看到的所有示例都涉及阻塞以获取结果(通过<-c...
2905