answersLogoWhite

0

An empty statement in Java is just that: a statement with nothing in it. There are typically two ways to represent this:

  1. A single semicolon ;
  2. An empty block {}
The usefulness of this type of statement is limited. The main use that I can think of is to fulfill the statement required for a loop structure.

Here is an example that I recently used:

while (sf(++n) != i);

This loop will constantly call the method sf with increasing values of n until the return value of sf(n) is equal to i. Each loop in Java must have some code to execute in the loop body. In this case, all necessary work is done in the condition, and so the mandatory loop body is an empty statement.

While there may be other (more clear) ways of writing this bit of code, this is an example of where that empty statement can be used.
User Avatar

Wiki User

15y ago

Still curious? Ask our experts.

Chat with our AI personalities

FranFran
I've made my fair share of mistakes, and if I can help you avoid a few, I'd sure like to try.
Chat with Fran
MaxineMaxine
I respect you enough to keep it real.
Chat with Maxine
ReneRene
Change my mind. I dare you.
Chat with Rene

Add your answer:

Earn +20 pts
Q: In java what is empty statement.Explain its usefulness?
Write your answer...
Submit
Still have questions?
magnify glass
imp