请考虑以下事项:
type Item struct {
Title string
Date time.Time
}
type Items []Item
func (slice Items) Len() int {
return len(slice)
}
func (slice Items) Less(i, j int) bool {
return slice[i].Date.After(slice[j].Date)
}
func (slice Items) Swap(i, j int) {
slice[i], slice[j] = slice[j], slice[i]
}
在main方法中,我有一段指向Item
的指针,必须对其进行排序。我的尝试是:
items := make(Items, len(in.Items)) //in.Items is of type []*Item
for i, value := range in.Items {
items[i] = *value
}
sort.Sort(items)
in.Items = make([]*Item, len(items))
for i, value := range items {
in.Items[i] = &value
}
虽然它能满足我的需求,但有另一种方法吗?
答案 0 :(得分:6)
只需将Items
设为项目指针列表:
type Items []*Item
可以使用您已经描述过的方法对其进行排序。就是这样。