Answer Posted / raja moram
The concept of suspending the execution of a function based
on the user defined condition is known as ASSERTION.
We implement the concept of Assertions using 'assert' keyword.
We use 'assert' keyword by mentioning a condition, if the
mentioned condition is not satisfied the 'assert' keyword
suspends the execution of the method in the middle and
transfers the control along with the 'AssertionError' class
object to the calling place.
Here 'AssertionError' is the subclass of 'Error'class.
To enable Assertions application:
java -ea <className>
This concept of ASSERTIONS is introduced from JDK 1.5 onwards
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
what do you mean by java annotations?
Which is fastest collection in java?
What is meant by data hiding in java?
What is main difference between variable and constant?
Write a factorial program using recursion in java?
Can I extend singleton class in java?
What does || mean in code?
What is a private class in java?
What is meant by anonymous class?
How variables are declared?
What is keyword in oop?
What is module with example?
What is the biggest integer?
Can a class with private constructor be extended?
What is the tradeoff between using an unordered array versus an ordered array?