werehunt
December 26th, 2009, 11:59 AM
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?
like:
if(a<b && d != z and so on...){
}
but this actually doesnt matter...or does it?