При повторном использовании Integer "a" в строке 33, почему jshell показывает ссылочную переменную как экземпляр Integer (см. Строки 38 и 39)? После повторного выделения строка 34 показывает, что "a" имеет значение null. Когда "a" объявлено в строке 6, но не задано значение, или сброс в null в строке 22, "a" не считается экземпляром Integer. Я ожидал бы, что когда ссылочная переменная будет переопределена, поскольку ее значение равно null, это не будет экземпляром типа; однако это не так.
01: java-lava:~ cafedude$ jshell
02: | Welcome to JShell -- Version 11
03: | For an introduction type: /help intro
04:
05: jshell> Integer a;
06: a ==> null
07: | created variable a : Integer
08:
09: jshell> a instanceof Integer;
10: $2 ==> false
11: | created scratch variable $2 : boolean
12:
13: jshell> a = 1;
14: a ==> 1
15: | assigned to a : Integer
16:
17: jshell> a instanceof Integer;
18: $4 ==> true
19: | created scratch variable $4 : boolean
20:
21: jshell> a = null;
22: a ==> null
23: | assigned to a : Integer
24:
25: jshell> a instanceof Integer;
26: $6 ==> false
27: | created scratch variable $6 : boolean
28:
29: jshell> a = 1;
30: a ==> 1
31: | assigned to a : Integer
32:
33: jshell> Integer a;
34: a ==> null
35: | modified variable a : Integer
36: | update overwrote variable a : Integer
37:
38: jshell> a instanceof Integer;
39: $9 ==> true
40: | created scratch variable $9 : boolean