Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If i have the following if statement

if ( (row != -1) && (array[row][col] != 10) ) {
    ....
}

Where row is an int value and array is an int[][] object.

My question is, if this will throw an exception if row = -1 as the array won't have a -1 field, so out of bounds exception? Or will it stop at the first part of the if, the (row!=-1) and because that is false, it will ignore the rest? Or to be sure it doesn't throw exception, i should separate the above if statement into two?

(Pls, don't tell me to check this out for my self :) I'm asking here 'cause i wanna ask a followup question as well ...)

share|improve this question
1  
it will stop on the first condition if it evaluates to false – Asaf Mar 13 '12 at 5:44
1  
Java is one of the programming languages that has short-circuiting for logical operators, so it works as you'd expect. VB and SQL are languages that do not have this feature, meaning you would have to use a different means to avoid an out-of-bounds exception. – Gabe Mar 13 '12 at 5:46
1  
It will stop at the 1st test and not try the 2nd test. – Charles Mar 13 '12 at 5:46

8 Answers

up vote 3 down vote accepted

It will stop safely before throwing an exception

The && is a short-circuiting boolean operator, which means that it will stop execution of the expression as soon as one part returns false (since this means that the entire expression must be false).

Note that it also guaranteed to evaluate the parts of the expression in order, so it is safe to use in situations such as these.

share|improve this answer
And i'm guessing if i have multiple statements like the above, separated with an OR operator ||, it still won't throw exception ... as each && will individually short-cirtuit? what i mean is if ( (&&) || (&&) ) – AndreiBogdan Mar 13 '12 at 5:50
1  
Correct.... as long as each sub-statement short circuits successfully then you will be fine. – mikera Mar 13 '12 at 5:52

It will not throw an exception. However, if row is < -1 (-2 for example), then you're going to run into problems.

share|improve this answer

It will stop at the first part of the if. Java uses short circuite evaluation.

share|improve this answer

No, It wont. the compiler will not check the second expression if the first expression is false... That is why && is called "short circuit" operator...

share|improve this answer

Called a short-circuit evaluation via the && and if the row check fails, there is no point in continuing evaluation.

share|improve this answer

Most programming languages short-circuit the test when the first expression returns false for an AND test and true for an OR test. In your case, the AND test will be short-circuited and no exception will occur.

share|improve this answer

Many programming languages have short-circuit evaluation for logical operators.

In a statement such as A and B, the language will evaluate A first. If A is false, then the entire expression is false; it doesn't matter whether B is true or false.

In your case, when row is equal to -1, row != -1 will be false, and the short-circui the array expression won't be evaluated.

Also, your second question about the behavior of the array index is entirely language-dependent. In C, array[n] means *(array + n). In python, array[-1] gives you the last item in the array. In C++, you might have an array with an overloaded [] operator that accepts negative indexes as well. In Java, you'll get an ArrayIndexOutOfBoundsException.

share|improve this answer

Also, you might need something like the following (or just use a try/catch).

boolean isItSafe(int[][] a, int x, int y) {
    boolean isSafe = true;
    if (a == null || a.length == 0 || x >= a.length || x < 0 || y < 0 || y >= a[0].length ) {
        isSafe = false;
    }
    return isSafe;
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.