📜  Golang 中的reflect.SliceOf()函数示例

📅  最后修改于: 2021-10-25 02:12:33             🧑  作者: Mango

Go 语言提供了运行时反射的内置支持实现,并允许程序在反射包的帮助下操作任意类型的对象。 Golang 中的reflect.SliceOf()函数用于获取元素类型为t 的切片类型,即如果t 表示int,则SliceOf(t) 表示[]int。要访问此函数,需要在程序中导入反射包。

下面的例子说明了上述方法在 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)
  
}