Java Programming - Assertions - Discussion

Discussion Forum : Assertions - Finding the output (Q.No. 2)
2.
public class Test 
{ 
    public void foo() 
    {
        assert false; /* Line 5 */
        assert false; /* Line 6 */
    } 
    public void bar()
    {
        while(true)
        {
            assert false; /* Line 12 */
        } 
        assert false;  /* Line 14 */
    } 
}
What causes compilation to fail?
Line 5
Line 6
Line 12
Line 14
Answer: Option
Explanation:

Option D is correct. Compilation fails because of an unreachable statement at line 14. It is a compile-time error if a statement cannot be executed because it is unreachable. The question is now, why is line 20 unreachable? If it is because of the assert then surely line 6 would also be unreachable. The answer must be something other than assert.

Examine the following:

A while statement can complete normally if and only if at least one of the following is true:

- The while statement is reachable and the condition expression is not a constant expression with value true.

-There is a reachable break statement that exits the while statement.

The while statement at line 11 is infinite and there is no break statement therefore line 14 is unreachable. You can test this with the following code:

public class Test80 
{ 
    public void foo() 
    {
        assert false; 
        assert false; 
    } 
    public void bar()
    {
        while(true)
        {
            assert false; 
            break; 
        } 
        assert false;  
    } 
}

Discussion:
12 comments Page 1 of 2.

Vidushi said:   5 years ago
@All.

Compile Time Error is when the error is encountered at compilation, i.e before the program is actually executed. This error includes syntactical errors, type conversion error. Whereas run time error occurs when the program is getting executed, this can be due to any unexpected error like divide by 0 or when array index is accessed is not in range of the size of the array.

Sumit said:   9 years ago
What is the solution, and what does the assert?

Job Smith said:   9 years ago
I have compiled the code without any compile time error. The only thing it was barking about was missing the main method. I have check the following code:

public class Test80
{
public void foo()
{
assert false;
assert false;
}
public void bar()
{
while(true)
{
assert false;
break;
}
assert false;
}
public static void main(String[] args){}
}

Thus the code is successfully compiled.
(1)

Harold said:   1 decade ago
The compiler can detect an unreachable statement, but cannot detect a dead loop.
(1)

Tushar said:   1 decade ago
Not just comment please told me more about assertion.

Yogesh M. said:   1 decade ago
Compile time error occurs when your syntax is correct but the logic is wrong while runtime error occurs when your syntax is wrong.

JyotiPrasad said:   1 decade ago
Assert are useful to test our assumptions during development without writing the exception handler for the exception.

Before jdk 1.4 it has been treated as an identifier and onwards from 1.4 it has been first introduced as a keyword.

assert can be write in two ways:

Really simple:

assert(y>x) or assert true or assert false.
Which must result in boolean value.

Simple:

assert(y>x):"y is greater than x".
In first exp is same but second exp can be anything that results in a value.

Kavyashree j said:   1 decade ago
What is the difference b/w compilation error and run time error?

How to identify whether it is a compilation error or run time error. Explain me in easy way. Now only I started to learn java.

Magi said:   1 decade ago
What is assert, what is the use assert in java and give proper explanation on assert?

Vasavi said:   1 decade ago
Why it didn't show error in line 6. Why it show at 14. Which method is executed first?


Post your comments here:

Your comments will be displayed after verification.