Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 174 Bytes

File metadata and controls

12 lines (10 loc) · 174 Bytes

Integer

The type to use for an int that might be null is Integer.

~void main() {
Integer i = null;
System.out.println(i);
i = 5;
System.out.println(i);
~}