如何在go中实现类似的界面?

时间:2016-01-30 12:26:44

标签: go go-interface

我最近开始研究Go并面临下一期。我想实现Comparable接口。我有下一个代码:

type Comparable interface {
    compare(Comparable) int
}
type T struct {
    value int
}
func (item T) compare(other T) int {
    if item.value < other.value {
        return -1
    } else if item.value == other.value {
        return 0
    }
    return 1
}
func doComparison(c1, c2 Comparable) {
    fmt.Println(c1.compare(c2))
}
func main() {
    doComparison(T{1}, T{2})
}

所以我收到错误

cannot use T literal (type T) as type Comparable in argument to doComparison:
    T does not implement Comparable (wrong type for compare method)
        have compare(T) int
        want compare(Comparable) int

我想我理解T没有实现Comparable的问题,因为比较方法需要参数T而不是Comparable

也许我错过了什么或者没有理解,但是可以这样做吗?

1 个答案:

答案 0 :(得分:4)

您的界面需要一种方法

stty eof ^E

但您已实施

compare(Comparable) int(其他T而不是其他可比较的)

你应该这样做:

func (item T) compare(other T) int {