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

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

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

下面的例子说明了上述方法在 Golang 中的使用:

示例 1:

func ArrayOf(count int, elem Type) Type

输出:

// Golang program to illustrate
// reflect.ArrayOf() Function 
  
package main
  
import (
    "fmt"
    "reflect"
)
  
// Main function 
func main() {
  
    // use of ArrayOf method
    ta := reflect.ArrayOf(5, reflect.TypeOf(123))
    fmt.Println(ta)
}

示例 2:

[5]int

输出:

// Golang program to illustrate
// reflect.ArrayOf() Function 
  
package main
  
import (
    "fmt"
    "reflect"
)
  
// Main function 
func main() {
    t := reflect.TypeOf(5)
      
    // use of ArrayOf method
    arr := reflect.ArrayOf(4, t)
    inst := reflect.New(arr).Interface().(*[4]int)
  
    for i := 1; i <= 4; i++ {
        inst[i-1] = i*i
    }
  
    fmt.Println(inst)
}