gpt4 book ai didi

dictionary - 返回 map 数据结构

转载 作者:IT王子 更新时间:2023-10-29 00:52:36 24 4
gpt4 key购买 nike

我正在尝试找出在 Go 中调用函数时如何返回 map 。我似乎无法在任何地方找到任何关于此的记录。到目前为止,这是我尝试过的:

func test() map {
// Get Auth Token (POST https://192.168.13.234/aperture/api/users/authorize)
anotherMap := map[string]string{"a": "b", "c": "d"}
return anotherMap
}

最佳答案

必须完全定义返回映射类型。

Playground :http://play.golang.org/p/26LFrBhpBC

func test() map[string]string {
anotherMap := map[string]string{"a": "b", "c": "d"}
return anotherMap
}

关于dictionary - 返回 map 数据结构,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27507259/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com