Java Programming/Keywords/int

is a keyword which designates the 32 bit signed integer primitive type.

The java.lang.Integer class is the nominal wrapper class when you need to store an value but an object reference is required.

Syntax:

 <variable-name> = <integer-value>;

For example:

int i = 65;


See also: