Sdílet prostřednictvím


numeric_limits::is_integer

Zkoušky typu má zastoupení celé číslo.

static const bool is_integer = false;

Vrácená hodnota

true Pokud typ má zastoupení celé číslo; false Pokud tomu tak není.

Poznámky

Všechny předdefinované celočíselné typy mají zastoupení celé číslo.

Příklad

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

using namespace std;

int main( )
{
   cout << "Whether float objects have an integral representation: "
        << numeric_limits<float>::is_integer
        << endl;
   cout << "Whether double objects have an integral representation: "
        << numeric_limits<double>::is_integer
        << endl;
   cout << "Whether int objects have an integral representation: "
        << numeric_limits<int>::is_integer
        << endl;
   cout << "Whether unsigned char objects have an integral representation: "
        << numeric_limits<unsigned char>::is_integer
        << endl;
}
  

Požadavky

Záhlaví:<omezení>

Obor názvů: std

Viz také

Referenční dokumentace

strstreambuf – třída