size_t나 int나 같은줄 알았는데
visual studio / MS에서는 다른듯..
한줄요약 : size_t는 unsinged long 형이다.
visual studio / MS에서는 다른듯..
한줄요약 : size_t는 unsinged long 형이다.
SIZE_T The maximum number of bytes to which a pointer can point. Use for a count that must span the full range of a pointer.
This type is declared in BaseTsd.h as follows:
typedef ULONG_PTR SIZE_T;
ULONG_PTR
An unsigned LONG_PTR.
This type is declared in BaseTsd.h as follows:
#if defined(_WIN64)
typedef unsigned __int64 ULONG_PTR;
#else
typedef unsigned long ULONG_PTR;
#endif
[링크 : http://msdn.microsoft.com/en-us/library/aa383751(v=vs.85).aspx] |
'Microsoft > Visual Studio' 카테고리의 다른 글
VS2008 에서 msdbg2.dll 에러 (0) | 2011.11.18 |
---|---|
Visual Studio 2008 에서 Class wizard 대신 사용하기 (4) | 2011.10.22 |
visual studio 에서 전처기 통과시킨 소스 얻어내기 (0) | 2011.10.12 |
오픈소스 c# 컴파일러? (0) | 2011.09.26 |
vs2008 변수명 near far는 오류? (0) | 2011.05.14 |