为什么(c ++)从long long unsigned int转换为long double和back会产生0

时间:2015-02-21 13:11:10

标签: c++ casting biginteger

我有这样的程序:

#include "stdafx.h"
#include <iostream>

using namespace System;
using namespace std;

typedef long long unsigned int T_num;
typedef long double T_ld;


int main(array<System::String ^> ^args) {
    T_num a = numeric_limits<T_num>::max();
    T_ld b = numeric_limits<T_ld>::max();
    if ( b > a ) {
        cout << "decimal is bigger than integer" << endl;
    } else {
        cout << "integer is bigger than decimal" << endl;
    }
    T_num c;
    b = a;
    c = floor(b);
    if ( c == a) {
        cout << "OK" << endl;
    } else {
        cout << "dupa" << endl;
        cout << c << endl;
        cout << a << endl;
        cout << b << endl;
    }
    system("pause");
    return 0;
}

产生这样的输出:

decimal is bigger than integer
dupa
0
18446744073709551615
1.84467e+019
Press any key to continue . . .

如果b可以包含a,那么为什么c为0?

嗯......它(网页)要求我提供更多细节,但我不确定我还能说些什么...... 我希望如果a适合b,那么它应该能够将它从b转换回c。

1 个答案:

答案 0 :(得分:5)

b不一定包含a,只能是它的近似值。 long double的范围大于unsigned long long(因此max的值更大),但可能有较少的尾数位来保存值的最高有效位,从而为较大的值提供较低的精度。

最大unsigned long long值为2^N-1,其中N是位数;大概64岁。

如果long double的尾数位数少于N,则转换会将其舍入到两个最接近的可表示值之一,可能是2^N。这超出了unsigned long long的范围,因此转换回来会给出未定义的行为。也许它正在使用模运算减少到零(如果从整数类型转换会发生),但原则上任何事情都可能发生。