“Schnittstelle zu Int Golang” Code-Antworten

Golang konvertieren die Schnittstelle zum Betontyp

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

Schnittstelle zu Int Golang

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

Golang -Schnittstelle zu 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

Ähnliche Antworten wie “Schnittstelle zu Int Golang”

Fragen ähnlich wie “Schnittstelle zu Int Golang”

Weitere verwandte Antworten zu “Schnittstelle zu Int Golang” auf Go

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen