5 lines
76 B
Java
5 lines
76 B
Java
|
|
Integer i = null; // variable i is undefined
|
||
|
|
if (i == null) {
|
||
|
|
i = 1;
|
||
|
|
}
|