“Interface à int golang” Réponses codées

Golang Convert Interface en type de béton

type Person struct {
	firstName string
	lastName  string
}
func printIfPerson(object interface{}) {
	person, ok := object.(Person)
	if ok {
		fmt.Printf("Hello %s!\n", person.firstName)
	}
}
Frantic Finch

Interface à int golang

iAreaId := val.(int)
iAreaId, ok := val.(int) // Alt. non panicking version 
Easy Eel

Interface Golang à int

var myInt interface{}
myInt = 8

toInt, ok := myInt.(int)
fmt.Println(toInt, ok)  // 8 true

toString, ok := myInt.(string)
fmt.Println(toString, ok)  // "" false
Evolcon

Réponses similaires à “Interface à int golang”

Questions similaires à “Interface à int golang”

Plus de réponses similaires à “Interface à int golang” dans Go

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code