Activity 2.3.1.
Declare and initialize integer variables of all four integer types.
Solution.
byte b = 0; short s = 10; int i = 255; long l = 12345L;
$
and followed a number). But if we enter a value that is larger by 1, that is 2147483648, we see an error.jshell> 2147483647; $1 ==> 2147483647 | created scratch variable $1 : int jshell> 2147483648 | Error: | integer number too large: 2147483648; | 2147483648 | ^
int
. To store 2147483648 in memory, we must choose a different Java integer type, one capable of holding larger numbers by virtue of being allocated more memory.byte
, short
, int
, long
. We use the term primitive because these types are fundamental to the Java language. These four types are listed in the following table along with the amount of memory used to store each as well as the range of values that may be stored as min and max. All integer variables are stored as one of these types. JShell chooses int
to store integers by default. We can see this in the $1
scratch variable above when JShell produces the output created scratch variable $1 : int
. The final int
tells us that $1
is of type int
. Attempting to create the value 2147483648 and store it as an int
produces an error because, according to the following table, that value is outside the range of values capable of being stored as an int
. What we need is a way to store the number as a long
.type | min | max | memory |
---|---|---|---|
byte |
-128 | 127 | 1 byte |
short |
-32,768 | 32,767 | 2 bytes |
int |
-2,147,483,648 | 2,147,483,647 | 4 bytes |
long |
-9,223,372,036,854,770,000 | 9,223,372,036,854,770,000 | 8 bytes |
int
are written as a sequence of digits, using no other special syntax. But other literal types require extra care, such as by adding trailing characters to indicate their type. For example, a long
literal is written as a sequence of digits followed by a trailing L
. The special trailing character tells Java to set aside twice the amont of memory used to store an int
(8 bytes). To create a long literal, terminate the literal’s sequence of integer digits with an L
, as follows. Note that when we enter an integer value like this, JShell in verbose mode tells us that the type is long
.jshell> 2147483648L; $3 ==> 2147483648 | created scratch variable $3 : long
$3
with a type of long
and initializes it with the value entered. This time, because a variable of type long
is capable of storing the number 2147483648, JShell does not produce an error. long
literals are made up of digits and a trailing L
>. Unfortunately, Java provides no way to express a short
or byte
literal directly. We can declare short
and byte
variables and initialise them, but we must use integer literals as the initial value. Java handles the automatic conversion from an int
to a short
and byte
before it is written to the variable’s memory. If the initial value is too big to fit, you will receive an error response.n
of type long
. We would enter long n;
. Java assigns a default value of 0 to all new integer type variables that have not been initialized.n
and its associated memory created, we may safely assign our larger number to the variable because as a type long
it is capable of holding the larger value.jshell> long n; n ==> 0 | created variable n : long jshell> n = 2147483648L; n ==> 2147483648 | assigned to n : long jshell>
int
value to a long
variable is permitted, but not the other way around.byte b = 0; short s = 10; int i = 255; long l = 12345L;
long
with the name _supercalifragilisticexpialidocious
and initialize it to the value 9223372036854775807L. Is this possible? Reassign the variable to the value 9223372036854775808L. Is it still possible? What went wrong? Reassign the variable to the value9223372036854775807, leaving off the final "L
". Did this work? What is wrong?jshell> long _supercalifragilisticexpialidocious = 9223372036854775807L; _supercalifragilisticexpialidocious ==> 9223372036854775807 | created variable _supercalifragilisticexpialidocious : long jshell> // It works! jshell> _supercalifragilisticexpialidocious = 9223372036854775808L; | Error: | integer number too large | _supercalifragilisticexpialidocious = 9223372036854775808L; jshell> // The number exceeds the size of a long jshell> _supercalifragilisticexpialidocious = 9223372036854775807; | Error: | integer number too large | _supercalifragilisticexpialidocious = 9223372036854775807; | ^ jshell> // The literal initializer is too big for an int literal
jshell> b * s $8 ==> 0 | created scratch variable $8 : int jshell> i + l $9 ==> 12600 | created scratch variable $9 : long jshell> l / s; $10 ==> 1234 | created scratch variable $10 : long
int
and a long
. Why is this the case?