Go Integers: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
No edit summary
Line 10: Line 10:


Machine-dependent integers: <tt>uint</tt>, <tt>int</tt> and <tt>uintptr</tt>.
Machine-dependent integers: <tt>uint</tt>, <tt>int</tt> and <tt>uintptr</tt>.
<tt>int</tt> should be the default.

Revision as of 07:42, 22 March 2016

Internal

Overview

Unsigned integers: uint8 (or byte), uint16, uint32 (or rune), uint64.

Signed integers: int8, int16, int32, int64.

Machine-dependent integers: uint, int and uintptr.

int should be the default.