golang slice 数组针对某个字段进行排序

2023-12-13 04:54:06

这里主要用到golang的sort.Sort方法,先看这个函数的简介:

介绍链接:https://books.studygolang.com/The-Golang-Standard-Library-by-Example/chapter03/03.1.html
在这里插入图片描述

如何实现:

import "sort"

// UserInfo 用户信息结构体
type UserInfo struct {
	UserId          string `gorm:"column:user_id"  json:"user_id"`
	UserName        string `gorm:"column:user_name" json:"user_name"`
	UserRole        int32  `gorm:"column:user_role" json:"user_role"`
	CreateTime      int64  `gorm:"column:create_time;autoCreateTime" json:"create_time"`
}


func main() {
	var userList = make([]UserInfo,0)
	
	//....插入数据,此处忽略

	//实现排序
	sort.Sort(ByCreateTime(userList))
}

//通过对CreateTime字段升序排序实现了sort.Interface接口
type ByCreateTime []UserInfo 

// Len 
func (a ByCreateTime) Len() int { return len(a) }

// Less 根据CreateTime创建时间 升序排序
func (a ByCreateTime) Less(i, j int) bool { return a[i].CreateTime < a[j].CreateTime }

// Swap 
func (a ByCreateTime) Swap(i, j int) { a[i], a[j] = a[j], a[i] }

若有其他更简便的方法,欢迎留言讨论

文章来源:https://blog.csdn.net/qq_33679504/article/details/134848733
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。