gpt4 book ai didi

戈朗 : accessing value in slice of interfaces

转载 作者:IT王子 更新时间:2023-10-29 02:11:39 24 4
gpt4 key购买 nike

我有一个数据结构,看起来像这样:

([]interface {}) (len=1 cap=1) {
(string) (len=1938) "value"
}

它是类型[]interface {}

如何使用 fmt 打印此 value,或以某种方式访问​​它以便我可以使用它。

最佳答案

您可以将类型断言或反射与通用接口(interface){}一起用于底层类型。如何执行此操作取决于您的特定用例。如果您希望 interface{} 成为示例中的 []interface{},您可以:

if sl, ok := thing.([]interface{}); ok {
for _, val := range sl {
fmt.Println(val)
// Or if needed, coerce val to its underlying type, e.g. strVal := val.(string)
}
}

( Playground link )

如果您不能对基础类型做出假设,则需要使用 reflect 来施展魔法.

关于戈朗 : accessing value in slice of interfaces,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44954218/

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