Buscar..


Larguero

La interfaz fmt.Stringer requiere un solo método, String() string para ser satisfecha. El método de cadena define el formato de cadena "nativo" para ese valor, y es la representación predeterminada si el valor se proporciona a cualquiera de las fmt formateo o impresión de paquetes de fmt .

package main

import (
    "fmt"
)

type User struct {
    Name  string
    Email string
}

// String satisfies the fmt.Stringer interface for the User type
func (u User) String() string {
    return fmt.Sprintf("%s <%s>", u.Name, u.Email)
}

func main() {
    u := User{
        Name:  "John Doe",
        Email: "[email protected]",
    }

    fmt.Println(u)
    // output: John Doe <[email protected]>
}

Playground

Fundamento básico

El paquete fmt implementa E / S formateadas usando verbos de formato:

%v    // the value in a default format
%T    // a Go-syntax representation of the type of the value
%s    // the uninterpreted bytes of the string or slice

Funciones de formato

Hay 4 tipos de funciones principales en fmt y varias variaciones dentro.

Impresión

fmt.Print("Hello World")        // prints: Hello World
fmt.Println("Hello World")      // prints: Hello World\n
fmt.Printf("Hello %s", "World") // prints: Hello World

Sprint

formattedString := fmt.Sprintf("%v %s", 2, "words") // returns string "2 words"

Huella

byteCount, err := fmt.Fprint(w, "Hello World") // writes to io.Writer w

Fprint puede ser usado, dentro de los manejadores http :

func handler(w http.ResponseWriter, r *http.Request) {
    fmt.Fprintf(w, "Hello %s!", "Browser")
}   // Writes: "Hello Browser!" onto http response

Escanear

Escanear escanea texto leído desde la entrada estándar.

var s string
fmt.Scanln(&s) // pass pointer to buffer
// Scanln is similar to fmt.Scan(), but it stops scanning at new line.
fmt.Println(s) // whatever was inputted

Interfaz de largueros

Cualquier valor que tiene un String() método implementa la fmt inteface Stringer

type Stringer interface {
        String() string
}


Modified text is an extract of the original Stack Overflow Documentation
Licenciado bajo CC BY-SA 3.0
No afiliado a Stack Overflow