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.Fprint() en los formatos de lenguaje Go usando los formatos predeterminados para sus operandos y escribe en w. Aquí se agregan espacios entre operandos cuando no se usa ninguna string como parámetro. Además, esta función está definida en el paquete fmt. Aquí, debe importar el paquete «fmt» para usar estas funciones.
Sintaxis:
func Fprint(w io.Writer, a ...interface{}) (n int, err error)
Parámetros: Esta función acepta dos parámetros que se ilustran a continuación:
- w io.Writer: esta es la entrada o salida estándar especificada.
- una …interfaz{}: contiene algunas strings o variables constantes utilizadas en el código.
Valor devuelto: Devuelve el número de bytes escritos y cualquier error de escritura encontrado.
Ejemplo 1:
// Golang program to illustrate the usage of // fmt.Fprint() function // Including the main package package main // Importing fmt and os import ( "fmt" "os" ) // Calling main func main() { // Declaring some const variables const name, dept = "GeeksforGeeks", "CS" // Calling Fprint() function which returns // "n" as the number of bytes written and // "err" as any error ancountered n, err := fmt.Fprint(os.Stdout, name, " is a ", dept, " portal.\n") // Printing the number of bytes written fmt.Print(n, " bytes written.\n") // Printing if any error encountered fmt.Print(err) }
Producción:
GeeksforGeeks is a CS portal. 30 bytes written. <nil>
Ejemplo 2:
// Golang program to illustrate the usage of // fmt.Fprint() function // Including the main package package main // Importing fmt and os import ( "fmt" "os" ) // Calling main func main() { // Declaring some const variables const num1, num2, num3 = "a", "b", "c" // Calling Fprint() function which returns // "n" as the number of bytes written and // "err" as any error encountered n, err := fmt.Fprint(os.Stdout, num1, num2, num3, "\n") // Printing the number of bytes written fmt.Print(n, " bytes written.\n") // Printing if any error encountered fmt.Print(err) }
Producción:
abc 4 bytes written. <nil>
En el código anterior, las variables constantes utilizadas son strings, por lo tanto, no se agregan espacios entre dos strings que se muestran arriba en la salida.
Ejemplo 3:
// Golang program to illustrate the usage of // fmt.Fprint() function // Including the main package package main // Importing fmt and os import ( "fmt" "os" ) // Calling main func main() { // Declaring some const variables const num1, num2, num3 = 5, 15, 15 // Calling Fprint() function which returns // "n" as the number of bytes written and // "err" as any error encountered n, err := fmt.Fprint(os.Stdout, num1, num2, num3, "\n") // Printing the number of bytes written fmt.Print(n, " bytes written.\n") // Printing if any error encountered fmt.Print(err) }
Producción:
5 15 15 8 bytes written. <nil>
En el código anterior, las variables constantes utilizadas son números, por lo tanto, se agregan espacios entre dos números que se muestran arriba en la salida.
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