go中int到底有多少位?

xiaoxiao2021-02-28  39

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.6miu.com/read-2623724.html

最新回复(0)