“Java stenfrand, jeśli” Kod odpowiedzi

Java jedna linia, jeśli jeszcze

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 stenfrand, jeśli

//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 stenfrand, jeśli


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

Nervous Nightingale

Odpowiedzi podobne do “Java stenfrand, jeśli”

Pytania podobne do “Java stenfrand, jeśli”

Więcej pokrewnych odpowiedzi na “Java stenfrand, jeśli” w Java

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu