Go 语言提供了运行时反射的内置支持实现,并允许程序在反射包的帮助下操作任意类型的对象。 Golang 中的reflect.SliceOf()函数用于获取元素类型为t 的切片类型,即如果t 表示int,则SliceOf(t) 表示[]int。要访问此函数,需要在程序中导入反射包。
Syntax:
Parameters: This function takes only one parameters of Type type(t).
Return Value: This function returns the slice type with element type t.
下面的例子说明了上述方法在 Golang 中的使用:
示例 1:
func SliceOf(t Type) Type
输出:
// Golang program to illustrate
// reflect.SliceOf() Function
package main
import (
"fmt"
"reflect"
)
// Main function
func main() {
v := reflect.TypeOf("123")
// use of SliceOfmethod
fmt.Println(reflect.SliceOf(v))
}
示例 2:
[]string
输出:
// Golang program to illustrate
// reflect.SliceOf() Function
package main
import (
"fmt"
"reflect"
)
// Main function
func main() {
ta := reflect.ArrayOf( 10, reflect.TypeOf("123"))
tc := reflect.ChanOf(reflect.SendDir, ta)
tp := reflect.PtrTo(tc)
ts := reflect.SliceOf(tp)
// use of SliceOf method
fmt.Println(ts)
}