“Golang Const Iota” Respostas de código

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

Respostas semelhantes a “Golang Const Iota”

Perguntas semelhantes a “Golang Const Iota”

Mais respostas relacionadas para “Golang Const Iota” em Go

Procure respostas de código populares por idioma

Procurar outros idiomas de código