代码示例
package test import (
"fmt"
"testing"
) type testInt func(int) bool func isOdd(integer int) bool {
if integer% == {
return false
}
return true
} func isEven(integer int) bool {
if integer% == {
return true
}
return false
} func filter(slice []int, f testInt) []int {
var result []int
for _, value := range slice {
if f(value) {
result = append(result, value)
}
}
return result
} func Test_Func(t *testing.T) {
slice := []int{, , , , , }
fmt.Println("slice = ", slice)
odd := filter(slice, isOdd)
fmt.Println("Odd elements of slice are: ", odd)
even := filter(slice, isEven)
fmt.Println("Even elements of slice are: ", even)
}
输出结果:
slice = [ ]
Odd elements of slice are: [ ]
Even elements of slice are: [ ]
函数当做值和类型在我们写一些通用接口的时候非常有用,通过上面例子我们看到testInt
这个类型是一个函数类型,然后两个filter
函数的参数和返回值与testInt
类型是一样的,但是我们可以实现很多种的逻辑,这样使得我们的程序变得非常的灵活。