登录
首页 >  Golang >  Go问答

type interface {} 不支持 golang 中的索引

来源:Golang技术栈

时间:2023-03-25 17:45:23 240浏览 收藏

“纵有疾风来,人生不言弃”,这句话送给正在学习Golang的朋友们,也希望在阅读本文《type interface {} 不支持 golang 中的索引》后,能够真的帮助到大家。我也会在后续的文章中,陆续更新Golang相关的技术文章,有好的建议欢迎大家在评论留言,非常感谢!

问题内容

我有这样的地图:

Map := make(map[string]interface{})

该映射应该包含从字符串到对象数组的映射。数组可以是不同的类型,例如[]Users[]Hosts。我填充了这个数组:

TopologyMap["Users"] = Users_Array
TopologyMap["Hosts"] = Hosts_Array

但是当我尝试从中获取元素时:

Map["Users"][0]

它给出了一个错误: (type interface {} does not support indexing)

我怎样才能克服它?

正确答案

您必须将您的 interface{} 显式转换为预期类型的​​切片才能实现它。像这样的东西:

package main
    
import "fmt"
    
type Host struct {
    Name string
}

func main() {
    Map := make(map[string]interface{})
    Map["hosts"] = []Host{Host{"test.com"}, Host{"test2.com"}}
    
    hm := Map["hosts"].([]Host)
    fmt.Println(hm[0])
}

游乐场链接

本篇关于《type interface {} 不支持 golang 中的索引》的介绍就到此结束啦,但是学无止境,想要了解学习更多关于Golang的相关知识,请关注golang学习网公众号!

声明:本文转载于:Golang技术栈 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>