C + + - 내 장 된 형식의 최대 값 매크로 정의
2853 단어 C++2011 프로 그래 밍
본문 주소: http://blog.csdn.net/caroline_wendy/article/details/24311895
C + + 에 서 는 int 의 최대 정수 (INT MAX), C 의 함수 에 이러한 매크로 정의 가 포함 되 어 있 습 니 다.
헤더 파일: \ # include
구체 적 인 참조:
name
expresses
value*
CHAR_BIT
Number of bits in a
char
object (byte) 8
or greater* SCHAR_MIN
Minimum value for an object of type
signed char
-127
( -27+1
) or less* SCHAR_MAX
Maximum value for an object of type
signed char
127
( 27-1
) or greater* UCHAR_MAX
Maximum value for an object of type
unsigned char
255
( 28-1
) or greater* CHAR_MIN
Minimum value for an object of type
char
either SCHAR_MIN or
0
CHAR_MAX
Maximum value for an object of type
char
either SCHAR_MAX or UCHAR_MAX
MB_LEN_MAX
Maximum number of bytes in a multibyte character, for any locale
1
or greater* SHRT_MIN
Minimum value for an object of type
short int
-32767
( -215+1
) or less* SHRT_MAX
Maximum value for an object of type
short int
32767
( 215-1
) or greater* USHRT_MAX
Maximum value for an object of type
unsigned short int
65535
( 216-1
) or greater* INT_MIN
Minimum value for an object of type
int
-32767
( -215+1
) or less* INT_MAX
Maximum value for an object of type
int
32767
( 215-1
) or greater* UINT_MAX
Maximum value for an object of type
unsigned int
65535
( 216-1
) or greater* LONG_MIN
Minimum value for an object of type
long int
-2147483647
( -231+1
) or less* LONG_MAX
Maximum value for an object of type
long int
2147483647
( 231-1
) or greater* ULONG_MAX
Maximum value for an object of type
unsigned long int
4294967295
( 232-1
) or greater* LLONG_MIN
Minimum value for an object of type
long long int
-9223372036854775807
( -263+1
) or less* LLONG_MAX
Maximum value for an object of type
long long int
9223372036854775807
( 263-1
) or greater* ULLONG_MAX
Maximum value for an object of type
unsigned long long int
18446744073709551615
( 264-1
) or greater* 이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Visual Studio에서 파일 폴더 구분 (포함 경로 설정)Visual Studio에서 c, cpp, h, hpp 파일을 폴더로 나누고 싶었습니까? 어쩌면 대부분의 사람들이 있다고 생각합니다. 처음에 파일이 만들어지는 장소는 프로젝트 파일 등과 같은 장소에 있기 때문에 파일...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.