Jump Statements
|
break
|
ends a loop or exits a switch
|
continue
|
skips a loop iteration and starts the next iteration
|
yield
|
yield - return : to return each element one at a time
yield - break : to end the iteration
|
goto
|
to transfer the program control directly to a labeled statement
|
return
|
terminates execution of the method and returns control to the calling method.
|