试图检查给定的数字是否小于另一个,所以写了以下内容:
package main
import "fmt"
type T interface {}
func Less(i, j T) bool {
return i > j
}
但得到以下错误:
# command-line-arguments
.\hashmap.go:23:11: invalid operation: i > j (operator > not defined on interface)
如何将此类数学运算添加到通用类型元素(数字或字符串)?
守着一只汪
相关分类