Difference between different integer types

后端 未结 4 2159
隐瞒了意图╮
隐瞒了意图╮ 2020-12-08 15:37

I was wondering what is the difference between uint32_t and uint32, and when I looked in the header files it had this:

types.h:

           


        
4条回答
  •  不知归路
    2020-12-08 15:55

    There is absolutely no difference between unsigned and unsigned int.

    Whether that type is a good match for uint32_t is implementation-dependant though; an int could be "shorter" than 32 bits.

提交回复
热议问题