El lenguaje Go proporciona una implementación de soporte incorporada de la reflexión en tiempo de ejecución y permite que un programa manipule objetos con tipos arbitrarios con la ayuda del paquete reflect. La función reflect.MakeMapWithSize() en Golang se usa para crear un nuevo mapa con el tipo especificado y inicial espacio para aproximadamente n elementos. Para acceder a esta función, es necesario importar el paquete reflect en el programa.
Sintaxis:
func MakeMapWithSize(typ Type, n int) ValueParámetros: Esta función toma los siguientes parámetros:
- typ : Este parámetro es el Tipo.
- n: Este parámetro es el número de elementos.
Valor devuelto: esta función devuelve un mapa recién creado.
Los siguientes ejemplos ilustran el uso del método anterior en Golang:
Ejemplo 1:
// Golang program to illustrate // reflect.MakeMapWithSize() Function package main import ( "fmt" "reflect" ) // Main function func main() { var str map[int]string var n int n=10 var strValue reflect.Value = reflect.ValueOf(&str) indirectStr := reflect.Indirect(strValue) //Use of MakeMapWithSize() method valueMap := reflect.MakeMapWithSize(indirectStr.Type(), n) fmt.Printf("ValueMap is [%v] .", valueMap) }
Producción:
ValueMap is [map[]] .
Ejemplo 2:
// Golang program to illustrate // reflect.MakeMapWithSize() 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.MakeMapWithSize(mapType, 100) 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) }
Producción:
[100] map[GeeksforGeeks:100]
Publicación traducida automáticamente
Artículo escrito por SHUBHAMSINGH10 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA