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

📅  最后修改于: 2021-10-24 14:26:20             🧑  作者: Mango

Go 语言提供了运行时反射的内置支持实现,并允许程序在反射包的帮助下操作任意类型的对象。 Golang 中的reflect.New()函数用于获取表示指向新零的指针的值指定类型的值。要访问此函数,需要在程序中导入反射包。

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

func New(typ Type) Value

输出:

// Golang program to illustrate
// reflect.New() 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)
}

示例 2:

&[1 4 9 16]

输出:

// Golang program to illustrate
// reflect.New() Function 
   
package main
   
import (
    "fmt"
    "reflect"
)
    
type Geek struct {
    A int `tag1:"First Tag" tag2:"Second Tag"`
    B string
}
  
// Main function
func main() {
    greeting := "GeeksforGeeks"
    f := Geek{A: 10, B: "Number"}
  
    gVal := reflect.ValueOf(greeting)
  
    fmt.Println(gVal.Interface())
  
    gpVal := reflect.ValueOf(&greeting)
    gpVal.Elem().SetString("Articles")
    fmt.Println(greeting)
  
    fType := reflect.TypeOf(f)
    fVal := reflect.New(fType)
    fVal.Elem().Field(0).SetInt(20)
    fVal.Elem().Field(1).SetString("Number")
    f2 := fVal.Elem().Interface().(Geek)
    fmt.Printf("%+v, %d, %s\n", f2, f2.A, f2.B)
}