-
Posted by l3gsh0t on Mon, 02 May 2011 22:29:29
Can the if statement be too long or have to many conditions? If so what are the limits? ie:
if (a == b and b == c and c == d and d == e) then...
-
Posted by Xers on Mon, 02 May 2011 22:53:28
Can the if statement be too long or have to many conditions? If so what are the limits? ie:
if (a == b and b == c and c == d and d == e) then...
There is no limit
but when it gets too long it will be harder to maintain
I always try to keep my code neat and clean :)