Order of if conditions and performance?

whan constructing conditions in if statement i was always looking to put more important ones (which have most chance to broke the condition) at the beginning.

like:
if(a<b && d != z and so on…){

}

but this actually doesnt matter…or does it?