duanhuo0577 2017-02-07 09:48
浏览 20
已采纳

包含结构的golang类型数组

I am trying to create a pseudo queue structure and insert jobs structs inside it. What am I doing wrong ?

import "fmt"

type Job struct {
    Type string
    Url string
}

type Queue [] Job

func main() {
    var queue []Queue
    job   := Job{"test", "http://google.com"}

    queue[0] = job
    fmt.Println(queue)
}

The code above is throwing:

cannot use job (type Job) as type Queue in assignment

  • 写回答

3条回答 默认 最新

  • duankangzi766767 2017-02-07 09:52
    关注

    I think problem is here:

    var queue []Queue
    

    Here queue is a slice of Queue or slice of slice of Job. So it's impossible to assign first its element value of Job.

    Try:

    var queue Queue
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?