开发者

What's the equivalent of int64_t, int_least16_t & uint8_t in Visual C++ 2008? [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

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜