Golang类型转换在指向一个类型的切片的指针切片到另一个切片之间

时间:2016-08-02 15:33:54

标签: go casting type-conversion protocol-buffers grpc

我是Golang的新手 当我尝试它时,我得到一个编译错误:

cannot use a.B (type []*C) as type []Z in field value

代码:

package main

type A struct {
    B []*C
}

type C struct {
    char string
}

type X struct {
    Y []Z
}

type Z struct {
    char string
}

func doSomething(r interface{}) X {
    a := r.(*A)
    return X{
        Y: a.B, // cannot use a.B (type []*C) as type []Z in field value
    }
}

func main() {
    something := &C{"abc"}
    somewhere := A{}
    somewhere.B = []*C{something}

    doSomething(somewhere)
}

我想要绕过的方式是迭代切片并将其分配给另一个切片。但我知道必须有其他方法来做到这一点。

去游乐场:https://play.golang.org/p/v0PUTPh6Mt

1 个答案:

答案 0 :(得分:2)

使用for循环转换切片中的每个值。别无他法

https://play.golang.org/p/oQi6oVz6My