Java Programming/Keywords/int
Tools
General
Sister projects
In other projects
int is akeyword which designates the 32 bit signed integerprimitive type.
Thejava.lang.Integer class is the nominal wrapper class when you need to store anint value but an object reference is required.
Syntax:
int <variable-name> = <integer-value>;For example:
inti=65; |
See also: