go 語言常量

深藍wahle發表於2019-12-22
    iota遇到 const 重置為0  const如果每增宣告一行iota+1

const (
a = iota //0
b //1
c //2
d //3
)

相關文章