GO语言"sort"包中"Reverse"函数的用法及代码示例。
用法:
func Reverse(data Interface) Interface
反向返回数据的相反顺序。
例子:
package main
import (
"fmt"
"sort"
)
func main() {
s := []int{5, 2, 6, 3, 1, 4} // unsorted
sort.Sort(sort.Reverse(sort.IntSlice(s)))
fmt.Println(s)
}
输出:
[6 5 4 3 2 1]
相关用法
- GO ReverseBytes64用法及代码示例
- GO ReverseBytes16用法及代码示例
- GO Reverse8用法及代码示例
- GO Reverse32用法及代码示例
- GO Reverse64用法及代码示例
- GO Reverse16用法及代码示例
- GO ReverseBytes32用法及代码示例
- GO ReverseProxy用法及代码示例
- GO Regexp.FindString用法及代码示例
- GO Regexp.FindAllIndex用法及代码示例
- GO ResponseRecorder用法及代码示例
- GO Regexp.ReplaceAllLiteralString用法及代码示例
- GO Regexp.FindStringSubmatch用法及代码示例
- GO Regexp.FindAllString用法及代码示例
- GO ReadMessage用法及代码示例
- GO Regexp.ExpandString用法及代码示例
- GO ResponseWriter用法及代码示例
- GO Regexp.FindAllStringSubmatch用法及代码示例
- GO Read用法及代码示例
- GO Rel用法及代码示例
注:本文由纯净天空筛选整理自golang.google.cn大神的英文原创作品 Reverse。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。