In Golang, uint16 VS int, which is less cost?

Viewed 1829

I am using a 64Bit server. My golang program needs integer type.

SO, If I use uint16 and uint32 type in source code, does it cost more than use most regular int type?

I am considering both computing cost and developing cost.

1 Answers
Related