热门标签
更多>
搜索结果
查询Tags标签: UNDERFLOW,共有 2条记录-
模板实现判断一个int是否是一个有效的int
enum RangeConstraint {RANGE_VALID = 0x0, // Value can be represented by the destination type.RANGE_UNDERFLOW = 0x1, // Value would overflow.RANGE_OVERFLOW = 0x2, // Value would underflow.RANGE_INVALID = RANGE_UNDERFLOW | RANGE_OVERFLOW // Invalid …
2021/12/30 6:07:09 人评论 次浏览 -
模板实现判断一个int是否是一个有效的int
enum RangeConstraint {RANGE_VALID = 0x0, // Value can be represented by the destination type.RANGE_UNDERFLOW = 0x1, // Value would overflow.RANGE_OVERFLOW = 0x2, // Value would underflow.RANGE_INVALID = RANGE_UNDERFLOW | RANGE_OVERFLOW // Invalid …
2021/12/30 6:07:09 人评论 次浏览