En el lenguaje Go, el paquete fmt implementa E/S formateadas con funciones análogas a las funciones printf() y scanf() de C. La función fmt.Errorf() en el lenguaje Go nos permite usar funciones de formato para crear mensajes de error descriptivos. Además, esta función está definida en el paquete fmt. Aquí, debe importar el paquete «fmt» para usar estas funciones.
Sintaxis:
func Errorf(format string, a ...interface{}) error
Parámetros: Esta función acepta dos parámetros que se ilustran a continuación:
- string: este es su mensaje de error con valores de marcador de posición como %s para una string y %d para un número entero.
- una …interfaz{}: Este es un nombre de variable constante usado en el código o cualquier función incorporada.
Valor devuelto: Devuelve la string como un valor que satisface el error.
Ejemplo 1:
// Golang program to illustrate the usage of // fmt.Errorf() function // Including the main package package main // Importing fmt import ( "fmt" ) // Calling main func main() { // Declaring some constant variables const name, dept = "GeeksforGeeks", "CS" // Calling the Errorf() function with verb // %q which is used for a single-quoted character err := fmt.Errorf("%q is a %q Portal.", name, dept) // Printing the error message fmt.Println(err.Error()) }
Producción:
"GeeksforGeeks" is a "CS" Portal.
Ejemplo 2:
// Golang program to illustrate the usage of // fmt.Errorf() function // Including the main package package main // Importing fmt and time import ( "fmt" "time" ) // Calling main func main() { // Calling Errorf() function with verb $v which is used // for printing structs err := fmt.Errorf("error occurred at: %v", time.Now()) // Printing the error fmt.Println("An error happened:", err) }
Producción:
An error happened: error occurred at: 2009-11-10 23:00:00 +0000 UTC m=+0.000000001
Publicación traducida automáticamente
Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA