What are the flow control statements in java? , JAVA Programming

Assignment Help:

The flow control statements give you to conditionally execute statements, to repeatedly operate a block of statements, or to just modify the sequential flow of control.

Looping

while, do-while, for

 

The body of the while loop is run only if the expression is true, so it cannot be executed even once:

 

while(i < 5){...}

 

The body of the do-while loop is run at least once because the test expression is evaluated only  after executing  the  loop  body.  Also, don't  forget  the  ending  semicolon  after  the  while expression.

 

do { ... } while(i < 5);

 

The for loop syntax is:

 

for(expr1; expr2; expr3)

{

// body

}

 

expr1 Æ is for initialization, expr2 Æ is the conditional test, and expr3 Æ is the iteration expression. Any of these sections may be omitted and the syntax will still be legal:

 

for( ; ; ) {} // an endless loop

Decision making

if-else, switch-case

 

The if-else statement is used for decision-making -- that is, it decides which course of action have to be taken.

 

if (x == 5) {...} else {..}

 

The switch statement is also used for decision-making, based on an integer expression. The argument passed to the switch and case statements could be int, char, short, or byte. The argument passed to the case statement could be a literal or a final variable. If no case matches, the default statement (which is optional) is executed.

 

int i = 1;

switch(i)

{

case 0:

System.out.println("Zero");break; //if break; is omitted case 1: also executed

case 1:

System.out.println("One");break; //if break; is omitted default: also executed

default: System.out.println("Default");break;

}

Branching

break, continue, label:, return

 

The break statement is needed to exit from a loop or switch statement, while the continue statement is needed to skip just the current iteration and continue with the next. The return is used to return from a function based on a condition. The label statements may lead to unreadable and unmaintainable spaghetti code hence should be avoided.

Exception handling

try-catch-finally, throw

 

Exceptions may be used to define ordinary flow control. This is a misuse of the idea of exceptions, which are meant only for exceptional conditions and hence should be avoided.

 


Related Discussions:- What are the flow control statements in java?

What is the actionform, ActionForm is javabean which shows the form inputs ...

ActionForm is javabean which shows the form inputs containing the request parameters from the View referencing the Action bean.

What is an abstract class in java, Question: (a) Java does not support ...

Question: (a) Java does not support multiple inheritance but does provide the concept of ‘interface'. Explain how interfaces can help a programmer to implement multiple inheri

Develop android geolocation service app, Project Description: Develop an...

Project Description: Develop an android service app that will run on the background. The app has to get the users location (longitude and latitude) every 5 minutes or when th

Streaming and decorator construction in java i/o, Java output and input is ...

Java output and input is described in terms of an abstract concept named a " stream ", which is a sequence of data. There are 2 types of streams. 1.      Byte streams (8 bit

JAVA Fundamentals, 15. Energy Drink Consumption A soft drink company recent...

15. Energy Drink Consumption A soft drink company recently surveyed 12,467 of its customers and found that approximately 14 percent of those surveyed purchase one or more energy dr

What are the different types of actions in struts, The different types of a...

The different types of actions in Struts are: ? DispatchAction ? LookupDispatchAction ? ForwardAction ? SwitchAction ? IncludeAction

What is a packet in the network environment, What is a packet within the ne...

What is a packet within the network environment? What kind of information does it contain? A packet is the shortest unit of data transmitted over a computer network. It's a mes

Exception handling in EJB, Java has two kinds of exceptions: 1. Checked ...

Java has two kinds of exceptions: 1. Checked exception: handled from java.lang.Exception but not java.lang.RuntimeException. 2. Unchecked exception: handled from java.lang.Ru

Explain the ? operator in java, Explain The ?  operator in Java ? The...

Explain The ?  operator in Java ? The value of a variable frequent depends on whether a particular boolean expression is or is not true and on nothing else. For example one ge

Coding, code for error correction and detection using even odd parity

code for error correction and detection using even odd parity

Write Your Message!

Captcha
Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd