go - golang编译错误:type没有方法

时间:2016-02-27 03:36:55

标签: go

如何解决? https://play.golang.org/p/aOrqmDM91J

  

:28:Cache.Segment undefined(类型Cache没有方法Segment)

     

:29:Cache.Segment undefined(类型Cache没有方法Segment)

package main
import "fmt"

type Slot struct {  
    Key []string
    Val []string
}

type Cache struct{
    Segment [3615]Slot
}

func NewCache(s int) *Cache{
    num:=3615
    Cacheobj:=new(Cache)

    for i := 0; i < num; i++ {
        Cacheobj.Segment[i].Key = make([]string, s)
        Cacheobj.Segment[i].Val = make([]string, s)
    }

    return Cacheobj
}

func (*Cache)Set(k string, v string) {
        for mi, mk := range Cache.Segment[0].Key {
         fmt.Println(Cache.Segment[0].Val[mi])  
    }
}
func main() {
    Cache1:=NewCache(100)
    Cache1.Set("a01", "111111")
}

2 个答案:

答案 0 :(得分:2)

Cache是一种类型。要在Cache对象上调用方法,您必须执行此操作。

func (c *Cache) Set(k string, v string) {
    for mi, _ := range c.Segment[0].Key {
         fmt.Println(c.Segment[0].Val[mi])  
    }
}

请注意c.Segment[0].Keyc.Segment[0].Val[mi]而不是Cache.Segment[0].KeyCache.Segment[0].Val[mi]

Go Playground

不相关的建议:在您的代码上运行gofmt。它指出违反了常规遵循的代码风格指南。我注意到你的代码中有一些。

答案 1 :(得分:0)

你需要给* Cache一个变量来使用它,比如:

package main
import "fmt"

type Slot struct {  
    Key []string
    Val []string
}

type Cache struct{
    Segment [3615]Slot
}

func NewCache(s int) *Cache{
    num:=3615
    Cacheobj:=new(Cache)

    for i := 0; i < num; i++ {
        Cacheobj.Segment[i].Key = make([]string, s)
        Cacheobj.Segment[i].Val = make([]string, s)
    }

    return Cacheobj
}

func (c *Cache)Set(k string, v string) {
        for mi, _:= range c.Segment[0].Key { // Had to change mk to _ because go will not compile when variables are declared and unused
         fmt.Println(c.Segment[0].Val[mi])  
    }
}
func main() {
    Cache1:=NewCache(100)
    Cache1.Set("a01", "111111")
}

http://play.golang.org/p/1vLwVZrX20