“Java Shorthand If” Ответ

Java One Line, если еще

statement ? true 	: 	false
  ^		  |	 ^			  ^
condition |   (instruction)
  		  |  If the statement:  
  		  |	is true | is false
--------------------------------------------------------------------------------
 Example:
int i = 10;

String out = i > 8 ? "Bigger than Eight!" : "Smaller than Eight!";
System.out.println(out);
TB__privi

Java Shorthand If

//Clear example with good readabilty
String var = "Text";
String shortHand = (var.equals("Text") ? "Returns this if true" : "Returns this if false");

//Other example that is less readable
int var = 9;
int shortHand = var == 9 ? 1 : var++;

//Pseudo code
// CONDITION ? returns when true : returns when false
Cookie_n00b

Java Shorthand If


name = ((city.getName() == null) ? "N/A" : city.getName());

Nervous Nightingale

Ответы похожие на “Java Shorthand If”

Вопросы похожие на “Java Shorthand If”

Больше похожих ответов на “Java Shorthand If” по Java

Смотреть популярные ответы по языку

Смотреть другие языки программирования