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.

I know Java doesn't support operator overloading, but it seems there are a few operators in other languages that could potentially benefit Java.

Probably my favorite example is the .? operator. Members of an object are only accessed using .? if the object is non-null:

public void example(String arg)
{
    if(arg != null && arg.equals("quit"))
        ...
}

Could be shortened to

public void example(String arg)
{
    if(arg.?equals("quit"))
        ...
}

The .? operator is (at least imho) easy to read, and eliminates some extra code that can sometimes be a detriment to code readability. In some code, there may be multiple checks on the null-state of an object or parameter, and may lead to unnecessary and excessive indentation on entire blocks of code.

Obviously, this would be no revolutionary change, but .? could be universally applied to all subclasses of Object as far as I can see. Am I wrong? And would this go against the logic used to decide that Java won't support operator overloading if it were to be adopted now?

share|improve this question
3  
No, there's definitely no way this could be integrated into Java as-is. However, several languages that compile to Java or Java bytecode have things like this. – Louis Wasserman Oct 8 '12 at 22:49
1  
The so-called Elvis operator has been proposed for Project Coin: mail.openjdk.java.net/pipermail/coin-dev/2009-March/000047.html I'm not sure if it will be actually included the 2nd part of the Coin features that will appear in Java 8 though. – Natix Oct 8 '12 at 22:50
1  
The problem is when you try to write the "else" clause... What is the cause of branching to the else? equals() returns false or arg is null? It's typically a wrong "good idea" – Aubin Oct 8 '12 at 22:51
1  
But you can write this if("quit".equals(arg)) cause equals does the null check. But I asume you like suport more operations and methodchaining. – daniel Oct 8 '12 at 22:55
Shouldn't that be ?.? Also, if arg is null, then arg?.equals("quit") will be null, but if expects a boolean. – ddekany Oct 8 '12 at 23:06
show 2 more comments

closed as not a real question by Jon Skeet, duffymo, Dunes, Nambari, Tim Pote Oct 8 '12 at 23:12

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

Browse other questions tagged or ask your own question.