gpt4 book ai didi

arrays - 如何将元素添加到 slice 反射?

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

你好,我正在学习 Go,我正在做一些反射(reflection)。我遇到了这样的情况:

  1. 我想创建一个 structslice 传递给函数作为 interface{}
  2. 然后我想在这个 slice 中添加新元素

这是一个playground与代码示例。

package main

import (
"fmt"
"reflect"
)

type A struct{ Name string }

func main() {
bbb(A{})
}

func aaa(v interface{}) {
sl := reflect.ValueOf(v).Elem()
typeOfT := sl.Type()

ptr := reflect.New(typeOfT).Interface()
s := reflect.ValueOf(ptr).Elem()
sl.Set(reflect.Append(sl, s))

ptr = reflect.New(typeOfT).Interface()
s = reflect.ValueOf(ptr).Elem()
sl.Set(reflect.Append(sl, s))
}

func bbb(v interface{}) {
myType := reflect.TypeOf(v)
models := reflect.Zero(reflect.SliceOf(myType)).Interface()
aaa(&models)

fmt.Println(models)
}

错误: panic:reflect:调用 reflect.Append on interface Value

有没有办法让它工作?注意:我想在引用上工作。

解决方案:

这是我设法做到的:playground .

最佳答案

当我使用 reflect.New 创建 slie 时,问题出在 reflect.Zero 它起作用了。这里有完整的工作示例。

https://play.golang.org/p/3mIEFqMxk-

package main

import (
"encoding/json"
"fmt"
"reflect"
)

type A struct {
Name string `column:"email"`
}

func main() {
bbb(&A{})
}

func aaa(v interface{}) {
t := reflect.TypeOf(v)
if t.Kind() == reflect.Ptr {
t = t.Elem()
}

if t.Kind() == reflect.Slice {
t = t.Elem()
} else {
panic("Input param is not a slice")
}

sl := reflect.ValueOf(v)

if t.Kind() == reflect.Ptr {
sl = sl.Elem()
}

st := sl.Type()
fmt.Printf("Slice Type %s:\n", st)

sliceType := st.Elem()
if sliceType.Kind() == reflect.Ptr {
sliceType = sliceType.Elem()
}
fmt.Printf("Slice Elem Type %v:\n", sliceType)

for i := 0; i < 5; i++ {
newitem := reflect.New(sliceType)
newitem.Elem().FieldByName("Name").SetString(fmt.Sprintf("Grzes %d", i))

s := newitem.Elem()
for i := 0; i < s.NumField(); i++ {
col := s.Type().Field(i).Tag.Get("column")
fmt.Println(col, s.Field(i).Addr().Interface())
}

sl.Set(reflect.Append(sl, newitem))
}
}

func bbb(v interface{}) {
t := reflect.TypeOf(v)
if t.Kind() == reflect.Ptr {
t = t.Elem()
}
if t.Kind() != reflect.Struct {
panic("Input param is not a struct")
}

models := reflect.New(reflect.SliceOf(reflect.TypeOf(v))).Interface()

aaa(models)

fmt.Println(models)

b, err := json.Marshal(models)
if err != nil {
panic(err)
}
fmt.Println(string(b))
}

关于arrays - 如何将元素添加到 slice 反射?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37939388/

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