4.2. Primitive Types and Values
A primitive type is predefined by the Java programming language and named by its reserved keyword (§3.9):
PrimitiveType: NumericType boolean
NumericType: IntegralType FloatingPointTypeIntegralType: one of byte short int long char
FloatingPointType: one of float double
Primitive values do not share state with other primitive values.
The numeric types are the integral types and the floating-point types.
The integral types are byte
, short
, int
, and long
, whose values are 8-bit, 16-bit, 32-bit and 64-bit signed two’s-complement integers, respectively, and char
, whose values are 16-bit unsigned integers representing UTF-16 code units (§3.1).
The floating-point types are float
, whose values include the ...
Get The Java® Language Specification, Java SE 7 Edition, Fourth Edition now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.