aspose file tools
The moose likes Beginning Java and the fly likes A command similar to Goto in Java? Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "A command similar to Goto in Java?" Watch "A command similar to Goto in Java?" New topic
Author

A command similar to Goto in Java?

Dan Bolens
Greenhorn

Joined: Sep 10, 2012
Posts: 25
Right now my program is supposed to allow users of repeat the program over again or allow them to restart if they make an error. My code is as follows:



If the user enters "N", the program terminates, but how can I make the program start over again if the user says "Y"? I've been looking for something similar to a GOTO statement (which I know you should NEVER use), and I've found the throw and switch commands. I'm a bit confused to how both of these commands work, and how I could fit them into my program. Any help would be much appreciated!
Devaka Cooray
Saloon Keeper

Joined: Jul 29, 2008
Posts: 2729
    
    3

Use a loop. Something like this would do the trick.


Author of ExamLab (Download) - the free mock exam kit for SCJP / OCPJP
Home Page -- Twitter Profile -- JavaRanch FAQ -- How to Ask a Question
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: A command similar to Goto in Java?
 
Similar Threads
Bad operand types for binary operator?
unable to log with log4j in tomcat 6.0.29
Help with number guessing game
Trouble with Guessing Game
method help