方法1:直接手寫代碼:(參考:http://golang-basic.blogspot.com/2014/07/step-by-step-guide-to-declaring-enums.html)html
package main import "fmt" // A Month specifies a month of the year (January = 1, ...). type Month int const ( January Month = 1 + iota February March April May June July August September October November December ) var months = [...]string{ "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December", } // String returns the English name of the month ("January", "February", ...). func (m Month) String() string { return months[m-1] } func main() { month := December if month == December { fmt.Println("Found a December") } // %!v(PANIC=runtime error: index out of range) month = month + Month(2) // fmt.Println(month) month = January + Month(2) fmt.Println(month) month++ fmt.Println(month) day := 34 month = Month(day % 31) fmt.Println(month) val := int(month) + 4 fmt.Println(val) month = Month(val) + 1 fmt.Println(month) }
2、經過工具生成代碼golang
聲明enums.goshell
package main type Month int const ( January Month = 1 + iota February March April May June July August September October November December )
命令執行:c#
go get -v -u golang.org/x/tools/cmd/stringer (第一次使用需下載,×翻) stringer -type=Month
自動生成:(參考:http://godoc.org/golang.org/x/tools/cmd/stringer)ide
建立:month_string.go工具
// generated by stringer -type=Month; DO NOT EDIT package main import "fmt" const _Month_name = "JanuaryFebruaryMarchAprilMayJuneJulyAugustSeptemberOctoberNovemberDecember" var _Month_index = [...]uint8{0, 7, 15, 20, 25, 28, 32, 36, 42, 51, 58, 66, 74} func (i Month) String() string { i -= 1 if i < 0 || i+1 >= Month(len(_Month_index)) { return fmt.Sprintf("Month(%d)", i+1) } return _Month_name[_Month_index[i]:_Month_index[i+1]] }
使用:ui
package main import ( "fmt" ) func main() { month := January fmt.Printf("%d\n", month) fmt.Println(January) month = month + Month(2) fmt.Printf("%d\n", month) fmt.Println(month) }
感受都有點小複雜 :)code