本文实例讲述了Go语言使用sort包对任意类型元素的集合进行排序的方法。分享给大家供大家参考。具体如下:
使用sort包的函数进行排序时,集合需要实现sort.Inteface接口,该接口中有三个方法:
代码如下:// Len is the number of elements in the collection.
Len() int
// Less reports whether the element with
// index i should sort before the
flag
flag 是Go 标准库提供的解析命令行参数的包。
使用方式:
flag.Type(name, defValue, usage)
其中Type为String, Int, Bool等;并返回一个相应类型的指针。
flag.TypeVar(&flagvar, name, defValue, usage)
将flag绑定到一个变量上。
自定义flag
只要实现flag.Value接口即可:
type Value interface {
String() string
Se