|
|
Start of Tutorial > Start of Trail > Start of Lesson |
Search
Feedback Form |
All variables in the Java language must have a data type. A variable's data type determines the values that the variable can contain and the operations that can be performed on it. For example, in theMaxVariablesDemoprogram, the declaration
int largestIntegerdeclares thatlargestIntegeris an integer (int). Integers can contain only integral values (both positive and negative). You can perform arithmetic operations, such as addition, on integer variables.The Java programming language has two major categories of data types: primitive and reference
.
A variable of primitive type contains a single value of the appropriate size and format for its type: a number, character, or boolean value. For example, the value of an
intis 32 bits of data in a format known as two's complement, the value of acharis 16 bits of data formatted as a Unicode character, and so on.Arrays, classes, and interfaces are reference types. The value of a reference type variable, in contrast to that of a primitive type, is a reference to (an address of) the actual value or set of values represented by the variable. A reference is called a pointer or a memory address in other languages. A reference is like your friend's address: The address is not your friend, but it's a way to reach your friend. A reference type variable is not the array or object itself but rather a way to reach it.
[PENDING: draw a picture]
The following table lists, by keyword, all of the primitive data types supported by Java, their sizes and formats, and a brief description of each. The
MaxVariablesDemoprogram declares one variable of each primitive type.Primitive Data Types
Keyword Description Size/Format (integers) byteByte-length integer 8-bit two's complement shortShort integer 16-bit two's complement intInteger 32-bit two's complement longLong integer 64-bit two's complement (real numbers) floatSingle-precision floating point 32-bit IEEE 754 doubleDouble-precision floating point 64-bit IEEE 754 (other types) charA single character 16-bit Unicode character booleanA boolean value ( trueorfalse)true or false
Purity Tip: In other languages, the format and size of primitive data types may depend on the platform on which a program is running. In contrast, the Java programming language specifies the size and format of its primitive data types. Hence, you don't have to worry about system-dependencies.
|
|
Start of Tutorial > Start of Trail > Start of Lesson |
Search
Feedback Form |