“Golang const iota” Code-Antworten

Golang const iota

const (
	C0 = iota
	C1
	C2
)
fmt.Println(C0, C1, C2) // "0 1 2"
knavels

Golang Iota Enum

type Direction int

const (
    North Direction = iota
    East
    South
    West
)

func (d Direction) String() string {
    return [...]string{"North", "East", "South", "West"}[d]
}
Fragile Frog

Ähnliche Antworten wie “Golang const iota”

Fragen ähnlich wie “Golang const iota”

Weitere verwandte Antworten zu “Golang const iota” auf Go

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen