How to use goto in javascript?

Can you use a goto command in Java?

  • I'm currently learning Java as a programming language, and I know certain bits of C#, VB, and Batch (as i've needed them for one mess or another), and I was wondering if there is something like a Batch goto command for Java? So in Batch, I know to make a menu the syntax would be something like this. @echo off cls :MENU echo Hello. Please make your choice CHOICE /C:AB /N /M " :: [A/B] : IF "%ERRORLEVEL%"=="1" goto DOA IF "%ERRORLEVEL%"=="2" goto DOB :DOA echo Doing A (Does whatever A is) goto MENU :DOB echo Doing B (Does whatever B is) goto MENU Is there anything that you could use in Java to create a similar effect? (maybe by assigning a segment of code a label, then calling it) Thanks in advance

  • Answer:

    there is no goto but there is certainly continue, if you use a loop

Jordan Fisher at Yahoo! Answers Visit the source

Was this solution helpful to you?

Other answers

You cannot use the GoTo statement in Structured Programming, however you may use the break and continue statements in loops. Although GoTo is a reserved word, it is not used in Java language. Avoid using GoTo's in your programs.

First of all, Java DOES have goto as a reserved keyword. One reason so that you cannot name a variable 'goto'. It is also true you can compile java with the line numbers. BASIC uses goto 20. (You see WHY Bill Gates had to have BASIC). But, use goto and the Java compiler doesn't know what to do with it. goto is not implemented. The switch( selection) branch or the enum class is how you do the same thing you want to do using Java.

No, there is no goto in Java. This is a good thing. In languages like Java, C#, and VB, you would achieve something like this by calling functions. It would be a good idea for you to learn about that before you get much further.

I don't believe Java has any such thing as goto. That said, even with languages that do have goto, like C, it is very bad practice to use it, because it makes it incredibly easy to shoot yourself in the foot. In Java, you could just put the extra code inside the if statements, which would work fine. However, sometimes you will want to create extra methods and call them from inside the if statements. You can also put all your 'menu' code inside a loop with an exit condition, so that it keeps asking for inputs until some certain input (or something else) tells it to stop doing so. The kind of loop you want is probably a while loop, which looks like this: while(condition) { //code block } which will keep executing the code block until, upon starting the code block, it finds that the condition (which must be a boolean statement) evaluates to false.

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.