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 de reflexión. La función reflect.Type() en Golang se usa para obtener el tipo de v. Para acceder a esta función, es necesario importar el paquete reflect en el programa.
Sintaxis:
func (v Value) Type() TypeParámetros: Esta función no acepta ningún parámetro.
Valor devuelto: esta función devuelve el tipo de v.
Los siguientes ejemplos ilustran el uso del método anterior en Golang:
Ejemplo 1:
// Golang program to illustrate // reflect.Type() Function package main import ( "fmt" "reflect" ) // Main function func main() { var val chan int // use of Type() method value := reflect.MakeChan(reflect.Indirect(reflect.ValueOf(&val)).Type(), 0) fmt.Println("Value :", value) }
Producción:
Value : 0xc00010c000
Ejemplo 2:
// Golang program to illustrate // reflect.Type() 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 Type() method valueMap := reflect.MakeMap(indirectStr.Type()) fmt.Printf("ValueMap is [%v] .", valueMap) }
Producción:
ValueMap is [map[]] .
Publicación traducida automáticamente
Artículo escrito por SHUBHAMSINGH10 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA