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 cannot find valid syntax for java shorthand.

How should i rewrite in shorthand this thing:

     int a = 2, b=4;
        if(a < 4) {
        System.out.println("a < b");}
    else { System.out.println("a >= b");
  }
share|improve this question
4  
What do you mean by "shorthand"? That's not a technical term within the Java language. – Jon Skeet Sep 4 '12 at 10:14
Can you explain exactly what the problem is? – Sam Sep 4 '12 at 10:14
Shorthand for what? – Mathias Schwarz Sep 4 '12 at 10:14
1  
You just don't know the subject. – Robert Kilar Sep 4 '12 at 10:18
1  
I think you should find a good book for Java (or rather programming in general) and it take it from there... – Warrior Prince Sep 4 '12 at 10:19
show 1 more comment

5 Answers

up vote 1 down vote accepted

The "shortest hand" I can imagine is something like:

 String s = (a < 4) ? "a<b" : "a>=b";
 System.out.println(s);
share|improve this answer

I suspect you're after the conditional operator:

System.out.println(a < b ? "a < b" : "a >= b");

If that's not what you were looking for, please clarify.

share|improve this answer
System.out.println("a"+((a<b)?"<":">=")+"b")
share|improve this answer
int a = 2, b=4;
System.out.println((a < 4) ? "a < b" : "a>=b");
share|improve this answer

Just for sake of answer, another version of short-hand

System..out.println("a " + (a < 4 ? "<" : ">=") + " b");
share|improve this answer

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.