I use assertions in Java in a standard way, having them turned on in my IDE. So they are not part of production release. Lately I have been seeing code examples with throw new AssertionError() and I started thinking about the situation where AssertionError should be used instead of assertion.
My guess is that main difference is the optionality of asserts so they don't slow down the production performance and so they can occur quite often in the code, but fixing hardly reproducible bugs reported from users is harder.
For AssertionError, the exact opposite applies.
I also find AssertionError more practical in places in code where the execution should not get, instead of using assert false //We should not be here. Especially if the return value is required. For example:
int getFoo(AnEnum a){
if (a == AnEnum.ONE)
return bar();
else if (a == AnEnum.TWO)
return SOME_VALUE;
//else
assert false; //throw new AssertionError();
return -1; //not necessary when usin AssertionError
}
- Is my reasoning correct?
- What are the other differences/use cases/best practices/limitations of either approach?
- In regards to providing a description in the
AssertionError- Should it be provided or is the mere fact that it is anError(and of assertion type) enough to be more or less sure that stack trace will be provided in case of found bugs?
AssertionErroryou don't have any option, it's thrown even if assertions have been deliberately disabled.assert false "Should not be reached"as well, so that does not distinguish betweenassert falseandthrow AssertionError().getFoois publicly reachable, according to the Java technote "Programming With Assertions"