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?

Java remote method invocation (RMI) architecture, Java Remote Method Invoca...

Java Remote Method Invocation (RMI): It gives a way for a Java program on one machine to interact with objects residing in different JVMs. The important blocks of the RMI arc

What is a proxy, A proxy is an object that is formed after applying advice ...

A proxy is an object that is formed after applying advice to a target object. When you think of client objects the target object and the proxy object are the similar.

Need tomcat based iptv cms p2p, Need tomcat based iptv cms p2p , avrelay tr...

Need tomcat based iptv cms p2p , avrelay trans-coder software Project Description: Tomcat based iptv cms p2p tracker cdn included, avrelay for trans-coding h264, Skills re

Constractar, Create a class HourlyWorker mind: particularHourlyWorker emplo...

Create a class HourlyWorker mind: particularHourlyWorker employee. • Declare two data members named wage and hours of double type with private access. • Implement a parameterized c

JSP and servlet, I just finished a small tutorial on JSP and servlet now I...

I just finished a small tutorial on JSP and servlet now I was looking for some assignments so that I can try my hands on

Describe methods of basic applet life cycle, Describe methods of Basic Appl...

Describe methods of Basic Applet Life Cycle ? All applets have the subsequent four methods: public void init(); public void start(); public void stop(); public void destroy();

Student, Your class must contain the followings (20 points):Code a simple c...

Your class must contain the followings (20 points):Code a simple class in JAVA classed “Student. · Variables (name, age, addressStreet, city, state, zip, country) ·

Nested if.., WAP to input a 4 digit no and find greatest using nested if

WAP to input a 4 digit no and find greatest using nested if

Program that instantiates a number of actors and writers, Talent agencies l...

Talent agencies like ICM, CAA and Paradigm represent writers, directors and actors (among other talent).  These agencies take in hundreds of millions of dollars a year collecting 1

Java Project, How to start a java project? how to draw a flow chart?

How to start a java project? how to draw a flow chart?

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