Golang接口类型

时间:2014-02-04 12:12:28

标签: interface struct go

我是GO的新手,我使用golang编写一个简单的类型界面。 类型定义为:

type Sequence []float64

and the interface is:

type Stats interface {

        greaterThan(x float64) Sequence
}

函数greaterThan(x float64)应该返回一个与对象中的数字相同的新Sequence         //除了小于或等于x的所有数字都已删除。

这是我的尝试,但它不会编译。我不知道如何解决它。 我的问题是:如何从结构类型中删除项目?我应该使用地图吗? (正如我的尝试)

package main

import "fmt"

type Sequence []float64

type Stats interface {

        greaterThan(x float64) Sequence
}

func (s Sequence) greaterThan(x float64) Sequence{

    var i int
    var f float64
    set := make(map[float64]int)
    var v = f[i] Sequence

    for i, f := range set{

    for j := 0; j <= len(s); j++ {
        if s[j] <= x {
        delete(set, s[j])
        }
    }
}

    return v
}

func display(s Sequence) {

        fmt.Println("s.greaterThan(2):", s.greaterThan(2))

}

func main() {

        s := Sequence([]float64{1, 2, 3, -1, 6, 3, 2, 1, 0})
        display(s)

}

1 个答案:

答案 0 :(得分:4)

我会这样做:

package main
import "fmt"
type Sequence []float64
type Stats interface {
    greaterThan(x float64) Sequence
}

func (s Sequence) greaterThan(x float64) (ans Sequence) {
    for _, v := range s {
        if v > x {
            ans = append(ans, v)
        }
    }
    return ans
}

func main() {
    s := Sequence{1, 2, 3, -1, 6, 3, 2, 1, 0}
    fmt.Printf("%v\n", s.greaterThan(2))
}

请参阅http://play.golang.org/p/qXi5uE-25v

很可能你不应该从切片中删除项目,而是构建一个只包含所需项目的新项目。

出于好奇:你想用Stat接口做什么?