numeric_limits::is_modulo
Testet, ob Typ eine Modulo-Darstellung hat.
static const bool is_modulo = false;
Rückgabewert
true, wenn der Typ eine Modulo-Darstellung hat; false wenn nicht.
Hinweise
Eine Modulo-Darstellung ist eine Darstellung, in der alle Ergebnisse reduziertes Modulo einige Wert sind. Alle vordefinierten vorzeichenlose ganzzahlige Typen haben eine Modulo-Darstellung.
Beispiel
// numeric_limits_is_modulo.cpp
// compile with: /EHsc
#include <iostream>
#include <limits>
using namespace std;
int main( )
{
cout << "Whether float objects have a modulo representation: "
<< numeric_limits<float>::is_modulo
<< endl;
cout << "Whether double objects have a modulo representation: "
<< numeric_limits<double>::is_modulo
<< endl;
cout << "Whether signed char objects have a modulo representation: "
<< numeric_limits<signed char>::is_modulo
<< endl;
cout << "Whether unsigned char objects have a modulo representation: "
<< numeric_limits<unsigned char>::is_modulo
<< endl;
}
Anforderungen
Grenzen Header: <>
Namespace: std