使用sort.slice()排序
本节介绍sort.Slice()
,这个函数是在Go 1.8中被初次引入的。这意味着sortSlice.go
中的代码不能在低于1.8版本的Go环境中运行。这部分代码将分三部分解释,第一部分是:
package main
import (
"fmt"
"sort"
)
type aStructure struct {
person string
height int
weight int
}
你可能是第一次在本书中看到Go structure
,在第四章组合类型的使用中,你将全面了解Go structure
的知识。现在你只需要记住,结构体是拥有不同类型的多个变量的数据类型。
下面是第二部分代码:
sort.Slice(mySlice, func(i, j int) bool {
return mySlice[i].height < mySlice[j].height
})
fmt.Println("<:", mySlice)
sort.Slice(mySlice, func(i, j int) bool {
return mySlice[i].height > mySlice[j].height
})
fmt.Println(">:",mySlice)
}
在这里你创建了一个名为mySlice
的切片,元素是aStructure
结构体。
最后一部分代码:
sort.Slice(mySlice, func(i, j int) bool {
return mySlice[i].height < mySlice[j].height
})
fmt.Println("<:", mySlice)
sort.Slice(mySlice, func(i, j int) bool {
return mySlice[i].height > mySlice[j].height
})
fmt.Println(">:",mySlice)
}
我们使用了sort.Slice()
及两个匿名函数对mySlice
进行排序,匿名函数使用了aStructure
的height
字段。
sort.Slice()函数根据匿名排序函数对切片中的元素进行排序。
执行sort.Slice.go
之后,将会得到下面的输出:
$ go run sortSlice.go
0: [{Mihalis 180 90} {Bill 134 45} {Merietta 155 45} {Epifanios 144 50} {Athina 134 40}]
<: [{Bill 134 45} {Athina 134 40} {Epifanios 144 50} {Merietta 155 45} {Mihalis 180 90}]
: [{Mihalis 180 90} {Merietta 155 45} {Epifanios144 50} {Bill 134 45} {Athina 134 40}]
如果你在Go版本低于1.8的UNIX系统中执行sort.Slice()
,就会得到下面的错误信息:
$ go version
go version g01.3.3 linux/amd64
$ go run sortSlice.go
./sortSlice.go:24: undefined: sort.Slice
./sortSlice.go:24: undefined: sort.Slice