Golang 常用4记 sort,bytes.buffer,struct,json

typeInterfaceinterface{//Len方法返回集合中的元素个数Lenbool//Swap方法交换索引i和j的两个元素的位置Swap}实现了sort.Interface接口的[]int类型typeIntSlice[]intfuncLenLessbool//接口方法

Golang sort包学习

在实际开发中我们经常会遇到一些需要排序,过滤,查询数组中的值等等…sort包总结通过上面的图我们可以发现:1.通过Slice/SliceStable可以实现各类数据的自定义排序2。