Comparable 接口叫什么?
在 Go 中,没有显式的比较接口。要比较不同类型的值,您可以使用 Less 函数。
以下是实现 Less 函数的方法:
func Less(a, b interface{}) bool { switch a.(type) { case int: if ai, ok := a.(int); ok { if bi, ok := b.(int); ok { return ai < bi } } case string: if ai, ok := a.(string); ok { if bi, ok := b.(string); ok { return ai < bi } } // ... default: panic("Unknown") } return false }
您可以使用 Less 函数来比较链接中的值以排序的方式列出并插入新元素:
func Insert(val interface{}, l *list.List) *list.Element { e := l.Front() if e == nil { return l.PushFront(val) } for ; e != nil; e = e.Next() { if Less(val, e.Value) { return l.InsertBefore(val, e) } } return l.PushBack(val) }
以上是如何比较 Go 中不同类型的值?的详细内容。更多信息请关注PHP中文网其他相关文章!