开发者

What's the equivalent of int64_t, int_least16_t & uint8_t in Visual C++ 2008? [duplicate]

开发者 https://www.devze.com 2023-02-25 05:37 出处:网络
This question already has answers here: 开发者_如何转开发Closed 11 years ago. Possible Duplicate:
This question already has answers here: 开发者_如何转开发 Closed 11 years ago.

Possible Duplicate:

What's the equivalent of int32_t in Visual C++?

What's the equivalent of int64_t , int_least16_t and uint8_t in Visual C++ 2008?


  • int64_t: __int64
  • uint8_t: unsigned __int8
  • int_least16_t: __int16


int64_t        __int64
int_least16_t  short int
uint8_t        unsigned char
0

精彩评论

暂无评论...
验证码 换一张
取 消