Go 语言提供了运行时反射的内置支持实现,并允许程序在反射包的帮助下操作任意类型的对象。 Golang 中的reflect.ArrayOf()函数用于获取给定计数和元素类型的数组类型,即如果x 表示int,则ArrayOf(10, x) 表示[10]int。要访问此函数,需要在程序中导入反射包。
Syntax:
Parameters: This function takes two parameters of int type (count) and Type type(elem).
Return Value: This function returns the array type with the given count and element type.
下面的例子说明了上述方法在 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)
}