Tagged Questions
4
votes
8answers
2k views
Check if variable null before assign to null?
Is variable assignment expensive compared to a null check? For example, is it worth checking that foo is not null before assigning it null?
if (foo != null) {
foo = null;
}
Or is this worrying ...