336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
This class is specialized for each of the fundamental types, with its members returning or set to the different values that define the properties that type has in the specific platform in which it compiles.
For all the other types (non-fundamental types) a specialization of this class should not exist.
The non-specialized class is defined as:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
|
A specialization exists for each of the fundamental types: bool, char, signed char, unsigned char, wchar_t, short, unsigned short, int,unsigned int, long, unsigned long, float, double and long double. These specializations define the specific values for the differentstatic const members, and all have is_specialized defined as true.
출처 : http://www.cplusplus.com/reference/std/limits/numeric_limits/
'Programming > C / C++' 카테고리의 다른 글
bitset 을 이용한 퀘스트 완료목록 관리 (0) | 2015.02.07 |
---|---|
EXIT_SUCCESS / EXIT_FAILURE (0) | 2015.02.07 |
bitset (0) | 2015.02.07 |
const 를 이용한 포인터 상수화 (0) | 2015.02.07 |
override, abstract, __interface, sealed (0) | 2015.02.07 |