やりたいこと
連続する数値の文字列
const (
zeroStr = "0"
oneStr = "1"
twoStr = "2"
threeStr = "3"
fourStr = "4"
fiveStr = "5"
)
をintみたくiotaで自動採番したい。
const (
zeroInt int = iota
oneInt
twoInt
threeInt
fourInt
fiveInt
)
やったこと
asciiにしてあげる
const (
zeroStr = string(iota + '0') // '0' == 0x30
oneStr
twoStr
threeStr
fourStr
fiveStr
)
以上です