寻找最大允许值的模板方法
可能的重复:
C++ 变量类型限制
我有一个定义的类型,它可能不会保持原来的样子。我想将该类型的最大值用作未定义值,但不想使用 INT_MAX 之类的东西,因为我稍后可能会将类型更改为 long 或完全其他类型。我已经看到了执行此操作的模板方法,但现在找不到它。我如何以一种临时安全的方式找到类型的最大允许值?
Possible Duplicate:
C++ variable types limits
I have a defined type that may not stay at what it is. I want to make use of the maximum value for that type as an undefined value but don't want to use something like, INT_MAX because I might later change the type to a long or something else entirely. I've seen a template way of doing this but now cannot find it. How in a tempated safe way can i find the maximum allowable value for a type?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用:
位于标头
中。请参阅此处:https://cplusplus.com/reference/limits/numeric_limits/
Use:
It's in the header
<limits>
. See here:https://cplusplus.com/reference/limits/numeric_limits/