Difference between uint and unsigned int?

后端 未结 5 1454
清歌不尽
清歌不尽 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:06

    Some systems may define uint as a typedef.

    typedef unsigned int uint;

    For these systems they are same. But uint is not a standard type, so every system may not support it and thus it is not portable.

提交回复
热议问题