DEV Community

Divyansh Pratap Singh
Divyansh Pratap Singh

Posted on

1

Why we use different int in Go :

int8, int16 :

when working with large data sets.
CPU packs multiple variables into its registers.
requires less bits

int16, int32 :
If you're dealing with a file format or protocol
CPU uses more registers or more space in a single register.
it requires more number of bits to store the data internally

Top comments (0)

Sentry image

See why 4M developers consider Sentry, “not bad.”

Fixing code doesn’t have to be the worst part of your day. Learn how Sentry can help.

Learn more