Go排序 发表于 2017-11-08 阅读次数: 排序123456// 顺序sort.Ints(a []int);sort.Strings(a []string);// 逆序 https://stackoverflow.com/questions/18343208/how-do-i-reverse-sort-a-slice-of-integer-gosort.Sort(sort.Reverse(sort.IntSlice(keys)))sort.Sort(sort.Reverse(sort.StringSlice(keys)))