Difference between uint and unsigned int?

后端 未结 5 1455
清歌不尽
清歌不尽 2021-02-01 00:23

Is there any difference between uint and unsigned int? I\'m looking in the site, but all question refers to C# or C++. I\'d like to have an answer conc

5条回答
  •  梦谈多话
    2021-02-01 01:18

    The unsigned int is a built in (standard) type so if you want your project to be cross-platform, always use unsigned int as it is guarantied to be supported by all compilers (hence being the standard).

提交回复
热议问题