当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Golang reflect.New()用法及代码示例


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

用法:
func New(typ Type) Value

参数:此函数采用以下参数:

  • typ:此参数是类型。

返回值:该函数返回一个值,该值表示指向指定类型的新零值的指针。

以下示例说明了以上方法在Golang中的用法:
范例1:



// 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) 
}

输出:

&[1 4 9 16]

范例2:

// 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) 
}

输出:

GeeksforGeeks
Articles
{A:20 B:Number}, 20, Number



相关用法


注:本文由纯净天空筛选整理自SHUBHAMSINGH10大神的英文原创作品 reflect.New() Function in Golang with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。