[C++] numeric_limits 클래스

numeric_limits 클래스

#include <iostream>
#include <cmath> // pow
// #include <limits> // 최대 최솟값

int main()
{
    using namespace std;

    short s = 1; // 2 bytes = 2 * 8bits = 16bits

    // 부호 표현 때문에 -1, 0 표현 떄문에 -1을 한다
    cout << pow(2, sizeof(short) * 8 - 1) - 1 << endl;

    cout << numeric_limits<short>::max() << endl;
    cout << numeric_limits<short>::min() << endl;
    cout << numeric_limits<short>::lowest() << endl
         << endl;

    s = 32767;
    s = s + 1;         // 32768
    cout << s << endl; // overflow

    s = numeric_limits<short>::min();
    s = s - 1;         // -32769
    cout << s << endl; // overflow

    return 0;
}

References

좋은 웹페이지 즐겨찾기