func main() {
// 新建一个RSet
rset := collection.NewSet(test_data.StudentsGood, test_data.StudentsBad)
printSet(rset)
fmt.Println("---------------")
rset.SortDescDowngradeBy("Id") // 集合按照排序字段顺次降级排序
printSet(rset)
fmt.Println("---------------")
rset.SortAscDowngradeBy("Id") // 集合按照排序字段顺次升级排序
printSet(rset)
fmt.Println("")
fmt.Println("----------------------------------------------")
s := rset.SkipReturn(1).LimitReturn(2) // 留下第1个开始连续2个元素
printSet(&s)
fmt.Println("----------------------------------------------")
std1 := test_data.Student{
Id:5,
Name:"小金李",
Age:0,
IsNewbie:true,
}
rset.Add(std1) // 添加一个元素
printSet(rset)
fmt.Println("----------------------------------------------")
var newStudentCanInterface interface{} = []test_data.Student{} // 新建一个装载结果的interface{}容器
fmt.Println("fill前的newStudentCanInterface", newStudentCanInterface)
rset.Fill(&newStudentCanInterface) // 将rset填充到容器
fmt.Println("fill之后的newStudentCanInterface", newStudentCanInterface)
newStudentCan := newStudentCanInterface.([]test_data.Student) // 将interface{}转换成其原始类型
fmt.Println("强转对象之后的newStudentCan:", newStudentCan)
}
func printSet(rset *collection.RSet) {
for _, obj := range rset.Set {
fmt.Printf("%d,%s,%d,%-v\n", obj["Id"], obj["Name"], obj["Age"], obj["IsNewbie"])
}
}
-
Notifications
You must be signed in to change notification settings - Fork 0
因为数据量大了之后有时候需要一种比较戳的方法查询,就是把数据捞到服务器上然后再筛选计算,转换成需要的数据,这个操作过程会有很多常用的方法,所以做这个库玩玩
License
ascode/rset
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
因为数据量大了之后有时候需要一种比较戳的方法查询,就是把数据捞到服务器上然后再筛选计算,转换成需要的数据,这个操作过程会有很多常用的方法,所以做这个库玩玩
Topics
Resources
License
Stars
Watchers
Forks
Packages 0
No packages published