假设我有两种类似的类型:
type type1 []struct { Field1 string Field2 int } type type2 []struct { Field1 string Field2 int }
有没有直接的方式来写一个type1到type2的值,知道它们有相同的字段?
(除了编写一个将所有字段从源复制到目标的循环)
谢谢。
对于您的具体示例,您可以轻松转换它
playground:
原文链接:https://www.f2er.com/go/187246.htmlt1 := type1{{"A",1},{"B",2}} t2 := type2(t1) fmt.Println(t2)