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


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


Go语言提供了运行时反射的内置支持实现,并允许程序借助Reflection包来处理任意类型的对象.Golang中的reflect.MakeMap()函数用于创建具有指定类型的新Map。要访问此函数,需要在程序中导入反射包。

用法:
func MakeMap(typ Type) Value

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

  • typ:此参数是类型。

返回值:此函数返回新创建的Map。

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



范例1:

// Golang program to illustrate 
// reflect.MakeMap() Function 
   
package main 
   
import ( 
    "fmt"
    "reflect"
) 
  
// Main function 
func main() { 
  
    var str map[int]string  
      
     var strValue reflect.Value = reflect.ValueOf(&str) 
  
     indirectStr:= reflect.Indirect(strValue) 
      
    //Use of MakeMap() method 
  
     valueMap:= reflect.MakeMap(indirectStr.Type()) 
      
     fmt.Printf("ValueMap is [%v] .", valueMap) 
  
}

输出:

ValueMap is [map[]] .

范例2:

// Golang program to illustrate 
// reflect.MakeMap() Function 
   
package main 
   
import ( 
    "fmt"
    "reflect"
) 
  
// Main function 
func main() { 
      
    intSlice:= make([]int, 0) 
    mapStringInt:= make(map[string]int) 
  
    sliceType:= reflect.TypeOf(intSlice) 
    mapType:= reflect.TypeOf(mapStringInt) 
  
    intSliceReflect:= reflect.MakeSlice(sliceType, 0, 0) 
    mapReflect:= reflect.MakeMap(mapType) 
  
    v:= 100 
    rv:= reflect.ValueOf(v) 
    intSliceReflect = reflect.Append(intSliceReflect, rv) 
    intSlice2:= intSliceReflect.Interface().([]int) 
    fmt.Println(intSlice2) 
  
    k:= "GeeksforGeeks"
    rk:= reflect.ValueOf(k) 
    mapReflect.SetMapIndex(rk, rv) 
    mapStringInt2:= mapReflect.Interface().(map[string]int) 
    fmt.Println(mapStringInt2) 
  
}

输出:

[100]
map[GeeksforGeeks:100]



相关用法


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