C++相当于 java.lang.Integer.MIN_VALUE

发布于 2024-08-29 04:14:49 字数 53 浏览 5 评论 0原文

如何在 C++ 上获得与 java.lang.Integer.MIN_VALUE 等效的值?

How can I get an equivalent of java.lang.Integer.MIN_VALUE on C++?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

初熏 2024-09-05 04:14:49
#include <limits>    
std::numeric_limits<int>::min();
#include <limits>    
std::numeric_limits<int>::min();
分分钟 2024-09-05 04:14:49

取决于你所说的“同等”是什么意思。 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, but std::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 be int, or might be something else. Its primary use otherwise is to prove your leet C++ skillz, and/or make your code longer ;-)

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