- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在进行转换测试时,我在 C++ 中遇到了一些奇怪的行为。
网上的C++引用表明std::numeric_limits<double>::max()
的返回值(在 limit.h
中定义)应该是 DBL_MAX
(在 float.h
中定义)。在我的测试中,当我打印出这些值时,两者确实完全相同。但是,当我从 double
转换它们时至 int
,奇怪的事情就出来了。
int32_t t1 = (int) std::numeric_limits<double>::max();
套t1
至 INT_MIN
,但是 int32_t t2 = (int) DBL_MAX;
套t2
至 INT_MAX
.使用 static_cast<int>
完成转换时也是如此.
但是,如果我定义一个函数
int32_t doubleToInt(double dvalue) {
return (int) value;
}
两者都是doubleToInt(std::numeric_limits<double>::max())
和 doubleToInt(DBL_MAX)
返回 INT_MIN
.
为了帮助理解事物,我用 Java 实现了一个类似的程序。在那里,所有的转换都返回了 INT_MAX
的值。 ,无论是否在函数中。
有人能指出为什么在 C++ 中结果是 INT_MIN
的原因吗?在某些情况下,INT_MAX
在其他人?转换时预期的行为应该是怎样的DBL_MAX
至 int
在 C++ 中?
#include <iostream>
#include <limits>
#include <float.h>
#include <stdlib.h>
#include <stdio.h>
using namespace std;
template <typename T, typename D> D cast(T a, D b) { return (D) a;}
int main()
{
int32_t t1 = 9;
std::cout << std::numeric_limits<double>::max() << std::endl;
std::cout << DBL_MAX << std::endl;
std::cout << (int32_t) std::numeric_limits<double>::max() << std::endl;
std::cout << (int32_t) DBL_MAX << std::endl;
std::cout << cast(std::numeric_limits<double>::max(), t1) << std::endl;
std::cout << cast(DBL_MAX, t1) << std::endl;
return 0;
}
为了完整起见:我使用的是 cygwin gcc 和 java 8。
最佳答案
尝试转换大于 INT_MAX
的 float 到int
是未定义的行为:
A prvalue of a floating point type can be converted to a prvalue of an integer type. The conversion truncates; that is, the fractional part is discarded. The behavior is undefined if the truncated value cannot be represented in the destination type. (§4.9 [conv.fpint], para. 1)
因此编译器可以为转换生成任何值(或者甚至做其他事情,比如抛出异常)。不同的编译器可以做不同的事情。同一个编译器可以在不同的时间做不同的事情。
试图理解为什么未定义行为的特定实例会显示它所显示的结果是没有实际意义的(除非您正在尝试对编译器进行逆向工程,即使那样 UB 通常也不是特别有趣)。相反,您需要专注于避免未定义的行为。
例如,由于将浮点值转换为整数的任何超出范围的转换都是未定义的,因此您需要确保此类转换不涉及超出范围的值。与其他一些语言 [注 1] 不同,C++ 标准不提供易于识别的可测试结果,因此您需要在进行转换之前进行测试。
请注意 DBL_MAX
是一个宏,其替换是表示最大可表示 float 的近似值的字符串。 std::numeric_limits<double>::max()
,另一方面,是精确的最大可表示 float 。
差异通常不会引人注意,但是(如标准 §5.20 [expr.const] 第 6 段中的注释所示):
Since this International Standard imposes no restrictions on the accuracy of floating-point operations, it is unspecified whether the evaluation of a floating-point expression during translation yields the same result as the evaluation of the same expression (or the same operations on the same values) during program execution.
尽管std::numeric_limits<double>::max()
被宣布为 constexpr
, 转换为 int
不是常量表达式(根据 §5.20/p2.5)正是因为它的行为未定义。
关于c++ - 将 DBL_MAX 转换为 int 的结果不同于 std::numeric_limits<double>::max() 到 int,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31748296/
下面的代码有效,我觉得double(double)和double(*)(double)没有区别,square和 &square,我说得对吗? #include double square(doubl
我知道我的作业很草率,这是我在这门课上的第 4 次作业。任何帮助将不胜感激,谢谢。 double getPrincipal(0); double getRate(0); double getYe
我遇到了那个错误,当我使用类时,我在使用函数指针时遇到了这个错误。我的函数'ope'函数我该如何解决 evaluator::function(){ double (*ope) (dou
问题://故事从哪里开始 Graphics 类型中的方法 drawLine(int, int, int, int) 不适用于参数 (double, double, double, double) g.
我有一张 map> m1 形式的 map .我可以将其复制到 map m2 形式的 map 吗?这样键是相同的,并且 m2 中的值是 get(m1->second) 不使用循环?谢谢! 最佳答案 这样
有没有办法获取vector> 的“.first”和“.second”的连续内存? ?我的意思是: void func(int N, double* x, double* y) { for (i
我正在尝试将自定义 lambda 传递给需要函数指针的函数(更准确地说是 zero 中的 Brent library 函数)。 我的想法是,我将使用参数创建一次 lambda,然后用多个值对其求值 x
这是一个很简单的问题,让我很困惑。 我收到一个源文件的以下错误,但另一个没有: 4 src/Source2.cpp:1466: error: no matching function for cal
struct CalculatorBrain { private var accumulator: Double? func changeSign(operand: Double) -
在我正在进行的项目中,我尝试使用 curlpp库来发出一个简单的 html GET 请求。当我将 cpp 文件传递给 g++ 时,出现以下错误: /usr/local/include/curlpp
不使用double就能获得quadruple精度超过16位的数字吗?如果可能的话,这取决于编译器还是其他?因为我知道有人说他使用double精度,并且具有22位精度。 最佳答案 数据类型double
我正在寻找有关特斯拉 GPU 中硬件如何实现 double 的信息。我读到,两个流处理器正在处理单个 double 值,但我没有找到 nvidia 的任何官方论文。 提前致谢。聚苯硫醚为什么大多数 G
这个问题在这里已经有了答案: Passing capturing lambda as function pointer (10 个答案) 关闭 2 年前。 我有这个错误 error: cannot
情况:我有一个元组列表,其中添加了一个元组: List> list = new List>(); list .Add(new Tuple(2.2, 6.6)); 一切似乎都还好。但是......在 D
我有一个 JList,里面有一堆名字,还有一个包含这些名字值的数组 final Double[] filmcost = { 5.00, 5.50, 7.00, 6.00, 5.00 }; 我想做的是,
我试图找出牛顿法来求方程的根。这个错误出来了,我无法处理。 double fn(double n){ return sin(n)+log(n)-1; } double f1n(double n
我有一个 junit 测试断言两个 Double 对象,具有以下内容: Assert.assertEquals(Double expected, Double result); 这很好,然后我决定将其
我正在尝试引入部分数据文件来填充数组,用户尝试了三次输入正确的数据文件名。我一再遇到这些错误。我知道像 arr 这样的数组只是一个指向内存块的指针。 #include #include #incl
我正在尝试完成复习题(为即将到来的编程决赛),但是,我无法解决这个问题,因为我不断收到错误(标题)。正如预期的那样,我将发布问题和我尝试的解决方案。 问题: 给定以下函数定义:void swap(do
任何人都知道如何实现这一目标。我已经尝试了通常的公式,但我只得到正数 Double.NEGATIVE_INFINITY) return d; } } 这将以相同的概率
我是一名优秀的程序员,十分优秀!