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中文網其他相關文章!