英文: Type converting slices of interfaces 问题 我很好奇为什么Go在将[]T隐式转换为[]interface{}时,却不会隐式转换T为interface{}。这...
在Golang中从函数列表中选择一个函数
英文: Selecting a function from a list of functions in Golang 问题 基本上,如果我有一个任意函数的切片或数组,我该如何选择只返回int的函数,...
Go:按名称查找函数
英文: Go: lookup function by name 问题 我对类型安全还不熟悉,无法弄清楚如何执行以下操作: package main func test(){ print("在...
使用反射获取函数的名称
英文: Get name of function using reflection 问题 我正在尝试使用Go的反射系统来获取函数的名称,但是当调用其类型的Name方法时,我得到一个空字符串。这是预期的...
实例化新的类型(Golang)
英文: Instance new Type (Golang) 问题 有人可以告诉我如何通过字符串创建一个新的 Type 实例吗?使用反射吗? 有一些示例,但它们是针对旧版本(Go 1 之前的版本)的语...
如何在最新的Go周刊中比较两个函数的指针相等性?
英文: How do I compare two functions for pointer equality in the latest Go weekly? 问题 在Go语言中,有没有办法比较两个...
通过名称在Go中调用一个结构体及其方法?
英文: Call a Struct and its Method by name in Go? 问题 我在这里找到了一个函数调用MethodByName()的链接http://golang.org/p...
如何在Go中在运行时根据类型创建一个结构体的新实例?
英文: How do you create a new instance of a struct from its type at run time in Go? 问题 在Go语言中,你如何在运行时根...
如何在Go中获取函数的名称?
英文: How to get the name of a function in Go? 问题 给定一个函数,是否可以获取它的名称?例如: func foo() { } func GetFunctio...
使用反射,如何设置结构体字段的值?
英文: Using reflect, how do you set the value of a struct field? 问题 getting a rough time working with ...
5