Recherche…
Raidisseur
L'interface fmt.Stringer
nécessite une seule méthode, String() string
à satisfaire. La méthode string définit le format de chaîne "natif" pour cette valeur et constitue la représentation par défaut si la valeur est fournie à l'une des routines de formatage ou d'impression des packages 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]>
}
Fmt de base
Le package fmt implémente les E / S formatées en utilisant les verbes de format:
%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
Fonctions de format
Il y a 4 types de fonctions principaux dans fmt
et plusieurs variations à l'intérieur.
Impression
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
peut être utilisé, à l'intérieur des gestionnaires http
:
func handler(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "Hello %s!", "Browser")
} // Writes: "Hello Browser!" onto http response
Balayage
Scan analyse le texte lu depuis l'entrée standard.
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
Interface Stringer
Toute valeur qui a une méthode String()
implémente l’ interface fmt
Stringer
type Stringer interface {
String() string
}
Modified text is an extract of the original Stack Overflow Documentation
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow