Quick question. In Java, do AND's take precedence over OR's? For example, how is this code interpreted?
if(statement1 && statement2 || statement3)
Which is this the same as?
if(statement1 && (statement2 || statement3))
or
if((statement1 && statement2) || statement3)
Thanks in advance.