Ricerca…


Stringer

L'interfaccia fmt.Stringer richiede un singolo metodo, String() string per essere soddisfatti. Il metodo stringa definisce il formato stringa "nativo" per quel valore, ed è la rappresentazione predefinita se il valore è fornito a una delle routine di formattazione o di stampa dei pacchetti 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

Fmt di base

Il pacchetto fmt implementa l'I / O formattato usando i verbi di 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

Funzioni di formattazione

Ci sono 4 tipi di funzioni principali in fmt e diverse varianti all'interno.

Stampare

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"

fprint

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

Fprint possibile utilizzare Fprint , all'interno dei gestori http :

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

Scansione

Scansione esegue la scansione del testo letto dallo standard input.

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

Interfaccia Stringer

Qualsiasi valore che abbia un metodo String() implementa lo Stringer inteface fmt

type Stringer interface {
        String() string
}


Modified text is an extract of the original Stack Overflow Documentation
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow