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