寻找最大允许值的模板方法

发布于 2024-10-01 11:15:01 字数 307 浏览 4 评论 0原文

可能的重复:
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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

↘紸啶 2024-10-08 11:15:01

使用:

std::numeric_limits<T>::max()

位于标头 中。请参阅此处:

https://cplusplus.com/reference/limits/numeric_limits/

Use:

std::numeric_limits<T>::max()

It's in the header <limits>. See here:

https://cplusplus.com/reference/limits/numeric_limits/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文