我目前的 golang 项目有问题。
我有另一个包,结果是一个带有预先确定的键的数组,例如:
package updaters
var CustomSql map[string]string
func InitSqlUpdater() {
CustomSql = map[string]string{
"ShouldBeFirst": "Text Should Be First",
"ShouldBeSecond": "Text Should Be Second",
"ShouldBeThird": "Text Should Be Third",
"ShouldBeFourth": "Text Should Be Fourth"
}
}
并将其发送到 main.go,以迭代每个索引和值,但结果是随机的(在我的情况下,我需要按顺序)。
真实案例: https: //play.golang.org/p/ONXEiAj-Q4v
我用谷歌搜索为什么 golang 以随机方式迭代,示例使用排序,但我的数组键是预先确定的,排序仅适用于 asc desc 字母表和数字。
那么,我怎样才能实现数组在迭代中不被随机化的方式呢?
ShouldBeFirst = Text Should Be First
ShouldBeSecond = Text Should Be Second
ShouldBeThird = Text Should Be Third
ShouldBeFourth = Text Should Be Fourth
Anyhelp 将不胜感激,谢谢。
HUH函数
相关分类