Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This site: Information on the null constant in Java states that the following two statements are synonymous:

if(PossibleNullVariable!=null)PossibleNullVariable.Action();
PossibleNullVariable!.Action();

Also, This site: Information on avoiding null checks in Java states that these two statements are synonymous:

String str = getStringMayBeNull()!=null?getStringMayBeNull():"";
String str = getStringMayBeNull() ?: “”;

Could I please get some clarification please? Thank you for your time. (:

share|improve this question
1  
did you type this in and try to compile? what happened? – MeBigFatGuy Nov 24 '11 at 23:12
1  
And what is your question? – David Waters Nov 24 '11 at 23:16
You might be interested in JSR 334 (Project Coin), which are the minor improvements to the language. – Dave Newton Nov 24 '11 at 23:19
3  
If you actually read the websites you linked, your question answers itself. – Evan Mulawski Nov 24 '11 at 23:22

1 Answer

up vote 1 down vote accepted

Both of those are suggestions given by the authors of the articles as better ways of dealing with null. Neither are currently in Java.

share|improve this answer
Thanks, I guess I didn't notice that when reading. Makes sense that I couldn't find any other documentation of the subject. – KiwiStrongis Dec 5 '11 at 5:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.