Go 语言提供了运行时反射的内置支持实现,并允许程序在反射包的帮助下操作任意类型的对象。 Golang 中的reflect.ValueOf()函数用于获取初始化为接口i 中存储的具体值的新值。要访问此函数,需要在程序中导入反射包。
Syntax:
Parameters: This function takes the following parameters:
- i: This parameter is the interface.
Return Value: This function returns the new Value initialized to the concrete value stored in the interface i.
下面的例子说明了上述方法在 Golang 中的使用:
示例 1:
func ValueOf(i interface{}) Value
输出:
// Golang program to illustrate
// reflect.ValueOf() Function
package main
import (
"fmt"
"reflect"
)
// Main function
func main() {
a := []int{2, 5}
var b reflect.Value = reflect.ValueOf(&a)
b = b.Elem()
fmt.Println("Slice :", a)
//use of ValueOf method
b = reflect.Append(b, reflect.ValueOf(80))
fmt.Println("Slice after appending data:", b)
}
示例 2:
Slice : [2 5]
Slice after appending data: [2 5 80]
输出:
// Golang program to illustrate
// reflect.ValueOf() Function
package main
import (
"fmt"
"reflect"
)
// Main function
func main() {
src := reflect.ValueOf([]int{10, 20, 32})
dest := reflect.ValueOf([]int{1, 2, 3})
// use of ValueOf() method
fmt.Println(src, dest)
}