For example I made an integer i
:
int i = 100;
Now I want to assign a value, as if I did:
int i;
What do I need to write in order to make my integer null (0 is not null)? null
does not work for some reason.
For example I made an integer i
:
int i = 100;
Now I want to assign a value, as if I did:
int i;
What do I need to write in order to make my integer null (0 is not null)? null
does not work for some reason.