1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
| package main
import "fmt"
func enums() { const ( cpp = 0 java = 1 python = 2 golang = 3 )
const ( iPhone = 2 * iota _ iPad iMac iPod )
const ( b = 1 << (10 * iota) kb mb gb tb pb )
fmt.Println(cpp, java, python, golang) fmt.Println(iPhone, iPad, iMac, iPod) fmt.Println(b, kb, mb, gb, tb, pb) }
func main() { enums() }
|