共用方式為


numeric_limits::is_exact

測試,如果在型別完成的計算免於誤差。

static const bool is_exact = false;

傳回值

true ,如果計算免於進位誤差; false

備註

所有預先定義整數型別有其值並傳回 false的精確表示。 固定點或音效表示也視為完全相同,不過,一個浮點表示不是。

範例

// numeric_limits_is_exact.cpp
// compile with: /EHsc
#include <iostream>
#include <limits>

using namespace std;

int main( )
{
   cout << "Whether float objects have calculations "
        << "free of rounding errors: "
        << numeric_limits<float>::is_exact
        << endl;
   cout << "Whether double objects have calculations "
        << "free of rounding errors: "
        << numeric_limits<double>::is_exact
        << endl;
   cout << "Whether long int objects have calculations "
        << "free of rounding errors: "
        << numeric_limits<long int>::is_exact
        << endl;
   cout << "Whether unsigned char objects have calculations "
        << "free of rounding errors: "
        << numeric_limits<unsigned char>::is_exact
        << endl;
}
  

需求

標題: <。>

命名空間: std

請參閱

參考

strstreambuf 類別