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.

Possible Duplicate:
Java “?” Operator for checking null - What is it? (Not Ternary!)
Java Null-pointer-safe accessor

Recently I read in one of the java forums about ?. operator. They wrote that ?. could not make it to the java 7. Can anybody explain what exactly ?. is?

Also, I like to know if this operator has any specific name or not like ?: is known as ternary operator.

share|improve this question
This is dealt with by stackoverflow.com/questions/4390141/…. – sjr Jun 12 '12 at 14:55
Which again simply means down-vote this question. – verisimilitude Jun 12 '12 at 14:56
2  
@verisimilitude No, it just means close it. – Dave Newton Jun 12 '12 at 14:57
Ok. You may proceed for the same. I don't have sufficient privileges for the same :-) – verisimilitude Jun 12 '12 at 14:58
I thought that it would be already present on SO. I searched with ?. operator as keyword . Then why didn't SO show me these questions in search results? – Priyank Doshi Jun 12 '12 at 14:59
show 2 more comments

marked as duplicate by Dave Newton, adarshr, berry120, BalusC, Romil Jun 12 '12 at 14:58

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

It's called the Null-safe operator.

share|improve this answer

I believe you mean the Null-safe operator, explained here. It was under consideration for Java 7, but subsequently dropped.

The other common use for the ? in Java is the ternary operator, which has been in Java since the dark ages and is explained here.

The two are completely different features however, the only common element is that they use the ? in some way.

share|improve this answer

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