C++相当于 java.lang.Integer.MIN_VALUE
如何在 C++ 上获得与 java.lang.Integer.MIN_VALUE 等效的值?
How can I get an equivalent of java.lang.Integer.MIN_VALUE on C++?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
取决于你所说的“同等”是什么意思。
java.lang.Integer.MIN_VALUE
是 Java 中的编译时常量,但std::numeric_limits::min()
不是 Java 中的整数常量表达式C++。因此它不能用作数组大小(嗯, int 的最小值无论如何也不能使用,因为它是负数,但涉及它的表达式或其他类似值或其他需要ice的上下文也是如此)。如果您需要 C++ 中的编译时常量,请使用
中的INT_MIN
。事实上,无论如何你也可以使用它:如果你正在编写通用代码,并且你有一些整数类型 T,它可能是 int,或者可能是,那么numeric_limits
是必不可少的其他的东西。它的主要用途是证明您的 leet C++ 技能,和/或使您的代码更长;-)Depends what you mean by "equivalent".
java.lang.Integer.MIN_VALUE
is a compile-time constant in Java, butstd::numeric_limits<int>::min()
is not an integer constant expression in C++. So it can't be used for example as an array size (well, the min value of an int can't anyway because it's negative, but the same goes for expressions involving it, or other similar values, or other contexts requiring an i.c.e).If you need a compile-time constant in C++, use
INT_MIN
from<climits>
. In fact you may as well use it anyway:numeric_limits
is essential if you're writing generic code, and you have some integer type T which might beint
, or might be something else. Its primary use otherwise is to prove your leet C++ skillz, and/or make your code longer ;-)