对结构体进行排序
摘要:
package main import ( "fmt" "math/rand" "sort" ) type Hero struct { Name string Age int } type HeroSlice []Hero func (hs HeroSlice) Len() int { return 阅读全文
posted @ 2021-06-23 21:02 裤裆内隐藏杀气 阅读(62) 评论(0) 推荐(0) 编辑