英文: Unix FIFO in go? 问题 有没有办法用Go语言创建一个Unix FIFO?在os包中没有Mkfifo或Mknod,尽管我预期在posix操作系统中会广泛使用命名的FIFO。实际上...
如何在Go中声明一个数组(或等效的)
英文: How do I declare an array(or equivalent) in Go 问题 我想做类似这样的事情(它是有效的) var myArray [9][3]int 但是当我这样...
在Go中并行计算不重复单词的数量
英文: Parallel distinct word count in Go 问题 Jakob Østergaard提出了这个挑战: 编写一个程序,从标准输入读取文本,并返回(打印)在文本中找到的不同...
在Go语言中,当方法由*Type调用时,你如何创建一个接口?
英文: In go, how do you create an interface when methods are called by *Type? 问题 type Char string func...
在Go中,如何为具有字符串基本类型的类型创建一个“构造函数”?
英文: In Go, how do I create a "constructor" for a type with a string base type? 问题 尝试创建一个类型...
使用反射,如何设置结构体字段的值?
英文: Using reflect, how do you set the value of a struct field? 问题 getting a rough time working with ...
在golang中,是否可以从类型本身获取reflect.Type,从字符串名称获取?
英文: In golang, is it possible to get reflect.Type from the type itself, from name as string? 问题 type...
在golang中,reflect包,8g错误“undefined: reflect.NewValue”
英文: in golang, reflect pkg, 8g error "undefined: reflect.NewValue" 问题 对于reflect包有点困惑 所有的例子...
如何确定interface{}值的“真实”类型?
英文: How to determine an interface{} value's "real" type? 问题 我还没有找到一个好的使用interface{}类型的...
http.Handle(处理程序或处理程序函数)
英文: http.Handle(Handler or HandlerFunc) 问题 以下是翻译好的部分: handle()函数被传递一个与http.HandlerFunc类型匹配的函数,或者一个实现...
11727