泛型教程使用这个:type Number interface {
int64 | float64
}golang 中没有所有整数和浮点类型的接口吗?
1 回答
萧十郎
TA贡献1815条经验 获得超13个赞
您可以声明一个集成了constraints.Floatand的新类型约束constraints.Integer。
// Number is a custom type set of constraints extending the Float and Integer type set from the experimental constraints package.
type Number interface {
constraints.Float | constraints.Integer
}
- 1 回答
- 0 关注
- 86 浏览
添加回答
举报
0/150
提交
取消