go中int到底有多少位?

前端之家收集整理的这篇文章主要介绍了go中int到底有多少位?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

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

猜你在找的Go相关文章