There are also two types called just int and uint that are the natural or most efficient size of signed and unsigned integers on a particular platform;
int is by far the most widely used numeric type.
Both these types have the same size,either 32 or 64 bits,but one must not make assumptions about which; different compilers may make different choices even on identical hardware.
原文链接:https://www.f2er.com/go/187259.html