How can I compare two values without using IF. I know it´s possible to use = ? or something like this. For instance, let´s compare the size of two arraylists c and t. For this, I would like to use a code similar to:
boolean answ = ? c.size() = t.size();
if? It might shed some light on what you are really trying to achieve... Is it just for the purpose of assigning? [which is indeed a good reason to use the trinary operator...] – amit Jan 2 '12 at 11:38