The int data type

The int data type represents a signed, 32-bit wide, integer.

int literals

To specify an int literal, use one of the following syntax options:

Syntax Description Example
int(number) A positive integer. int(2)
int(-number) A negative integer. int(-2)
int(null) Represents the null value.

Learn more about syntax conventions.