网上的资料都是说map无序,但是为何我每次执行都是有序的?
是因为我的sdk版本太高,官方加了功能了吗?
这个能看到 src 内部的源代码吗?在哪里?可以证明到 确实 map现在是有序的?
用`range`遍历是无序的。。如果你指的是序列化json,那么有的三方库可以指定map是否进行排序。
例如下面的`SortMapKeys`
```go
// ConfigCompatibleWithStandardLibrary tries to be 100% compatible with standard library behavior
var ConfigCompatibleWithStandardLibrary = Config{
EscapeHTML: true,
SortMapKeys: true,
ValidateJsonRawMessage: true,
}.Froze()
```
#4
更多评论