Jump statements in Java -break continue goto return II Core Java II Automation II Selenium with Java

Опубликовано: 17 Сентябрь 2020
на канале: Knowledge Share
1,883
24

In this session you will learn about Jump statements in java
You will learn how to use below keywords break;continue;goto; return;

Control Statements : Jump
========================
break -: Applied in Loops, conditional and when applied, breaks the loop.... ( Switch )
Synatax:
break;

Continue -: Applied in loops, conditional and when applied, the statements below continue are not executed and continues with the next iteration
syntax:
continue;

goto - break label;
continue label;
goto is used when program needs to jump to particular point of code

return
-: Returns are used in methods/functions to return a value
syntax:
return a+b;
return;

Examples for Practice:
===========================
package controlstatements;

public class jump_statements_Examples
{

public static void main(String args[])
{

jump_statements_Examples j=new jump_statements_Examples();

int z=j.sum(10, 20);
System.out.println("z value is : " + z);

j.display();
//int a=7;


System.out.println("Jump Examples");

/*
if(a==7) { System.out.println("Inside if "); break; }

*/
// Break Examnple
/*
for (int i=0;iLT=10;i++) { System.out.println("i values is : " + i); if(i==7)
{ System.out.println("i values reached 7 ,, breaking the loop"); break; } }
*/

/*
// Continue; Example ( Printing odd numbers for (int i=0;iLT=10;i++) {

if(i%2==0) //modolus { continue; } System.out.println("i value is : " + i); }
*/
//
// Example of goto
// continue label;
// break label;

/*
out: for (int i=1;iLT=100;i++) { System.out.println("Outer");

for(int j=1;iLT=100;j++) { System.out.println("nested"); if(j==5) { continue
out; } } }
*/

//Return Examples'

}

int sum(int x,int y)
{
return x+y;
}

void display()
{
System.out.println("Welcome");
return;
}


}


Смотрите видео Jump statements in Java -break continue goto return II Core Java II Automation II Selenium with Java онлайн без регистрации, длительностью часов минут секунд в хорошем качестве. Это видео добавил пользователь Knowledge Share 17 Сентябрь 2020, не забудьте поделиться им ссылкой с друзьями и знакомыми, на нашем сайте его посмотрели 1,88 раз и оно понравилось 2 людям.