Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

java question mark operator

//ternary operator
// takes in a conditional statement
// a is returned when the condition is true and vice versa
return (a == b) ? a : b;

int n = (a < b) ? a + 10: b;
 
PREVIOUS NEXT
Tagged: #java #question #mark #operator
ADD COMMENT
Topic
Name
3+4 =