gpt4 book ai didi

go - 构建不同类型的数组

转载 作者:IT王子 更新时间:2023-10-29 01:58:34 24 4
gpt4 key购买 nike

我是 Go 的新手,我来自 Ruby。所以……

我可以构建包含不同类型的数组吗

[1, 2, "apple", true]

抱歉,如果这是个愚蠢的问题。

谢谢。

最佳答案

您可以通过创建一个 interface{} 类型的片段来做到这一点。例如:

func main() {
arr := []interface{}{1, 2, "apple", true}
fmt.Println(arr)

// however, now you need to use type assertion access elements
i := arr[0].(int)
fmt.Printf("i: %d, i type: %T\n", i, i)

s := arr[2].(string)
fmt.Printf("b: %s, i type: %T\n", s, s)
}

阅读更多相关信息 here .

关于go - 构建不同类型的数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39376566/

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