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.Fprintln() en los formatos de lenguaje Go usando los formatos predeterminados para sus operandos y escribe en w. Aquí siempre se agregan espacios entre los operandos especificados y se agrega una nueva línea al final. Además, esta función está definida en el paquete fmt. Aquí, debe importar el paquete «fmt» para usar estas funciones.
Sintaxis:
func Fprintln(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 y 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.Fprintln() 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 Fprintln() function which returns // "n" as the number of bytes written and // "err" as any error ancountered n, err := fmt.Fprintln(os.Stdout, name, "is a", dept, "portal.") // 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>
En el código anterior, se puede ver que en la función Fprintln(), no se agregó una nueva línea (\n), pero imprime una nueva línea que se puede ver en el resultado que se muestra arriba.
Ejemplo 2:
// Golang program to illustrate the usage of // fmt.Fprintln() function // Including the main package package main // Importing fmt and os import ( "fmt" "os" ) // Calling main func main() { // Declaring some const variables const str1, str2, str3 = "a", "b", "c" // Calling Fprintln() function which returns // "n" as the number of bytes written and // "err" as any error ancountered n, err := fmt.Fprintln(os.Stdout, str1, str2, str3) // Printing the number of bytes written fmt.Print(n, " bytes written.\n") // Printing if any error encountered fmt.Print(err) }
Producción:
a b c 6 bytes written. <nil>
En el código anterior, se puede ver que en la función Fprintln(), no se agregó espacio, pero se imprime, incluido el espacio que se puede ver en la salida que se muestra arriba.
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