Go 语言提供了运行时反射的内置支持实现,并允许程序在反射包的帮助下操作任意类型的对象。 Golang 中的 reflect.String()函数用于获取字符串v 的底层值,作为字符串。要访问此函数,需要在程序中导入反射包。
Syntax:
Parameters: This function does not accept any parameter.
Return Value: This function returns the string v’s underlying value, as a string.
下面的例子说明了上述方法在 Golang 中的使用:
示例 1:
func (v Value) String() string
输出:
// Golang program to illustrate
// reflect.String() Function
package main
import (
"fmt"
"reflect"
)
// Main function
func main() {
var k = reflect.TypeOf(0)
var e = reflect.TypeOf("")
//use of String method
fmt.Println(reflect.FuncOf([]reflect.Type{k},
[]reflect.Type{e}, false).String())
}
示例 2:
func(int) string
输出:
// Golang program to illustrate
// reflect.String() Function
package main
import (
"fmt"
"reflect"
)
type Struct1 struct {
Var1 string
Var2 string
Var3 float64
Var4 float64
}
// Main function
func main() {
NewMap := make(map[string]*Struct1)
NewMap["abc"] = &Struct1{"abc", "def", 1.0, 2.0}
subvalMetric := "Var1"
for _, Value:= range NewMap {
s := reflect.ValueOf(&Value).Elem()
// use of String() method
println(s.String())
println(s.Elem().String())
metric := s.Elem().FieldByName(subvalMetric).Interface()
fmt.Println(metric)
}
}