vote up 1 vote down star

Why is the goto keyword in java reserved though it is not used?

EDIT : Just to rephrase the question once again to avoid the ambiguity, I understand goto functionality is not supported in java and also understand that it makes code difficult to read. But its not supported, so then why make it reserved. It can be used as variable names atleast

flag

57% accept rate
3  
just a word of advise: never ever use goto – lostiniceland Aug 26 at 12:39
3  
Master Dijkstra says : "Go To Statement Considered Harmful".Check this out : stackoverflow.com/questions/46586/… – n00ki3 Aug 26 at 12:43
And then there's "'Go To Statement Considered Harmful' Considered Harmful", and "'"Go To Statement Considered Harmful" Considered Harmful' Considered Harmful?" VEEEEERY recursive, this meme. – Chris Charabaruk Aug 26 at 13:01
2  
'goto' is always evil - like in 'goto work' or 'goto school' ;) – Andreas_D Aug 26 at 14:46
1  
@Andreas_D: Thank you! You've just helped me fill the 'About Me' in my SO profile. :-) – Alceu Costa Aug 27 at 0:02
show 2 more comments

10 Answers

vote up 10 vote down check

So they could be used one day if the language designers felt the need.

Also, if programmers from languages that do have these keywords (eg. C, C++) use them by mistake, then the Java compiler can give a useful error message.

Or maybe it was just to stop programmers using goto :)

link|flag
reasonable !! :) – Ajay Aug 26 at 13:14
vote up 0 vote down

To prohibit declarations of variables with the same name.

e.g. int i = 0, goto;

link|flag
vote up 4 vote down

Because it's not supported and why would you want a goto keyword that did nothing or a variable named goto.

Although you can use break label; and continue label; statements to effectively do what goto does. But I wouldn't recommend it.

public static void main(String [] args) {

     boolean t = true;

     first: {
        second: {
           third: {
               System.out.println("Before the break");

               if (t) {
                  break second;
               }

               System.out.println("Not executed");

           }

           System.out.println("Not executed - end of second block");

        }

        System.out.println("End of third block");

     }
}
link|flag
1  
-1 Why should I not be allowed to have a variable or method named goto? – Michael Borgwardt Aug 26 at 12:49
2  
Because it has a meaning in the land of programming which is not applicable to Java. It's also a poor choice of variable name. – pjp Aug 26 at 12:52
then wht about words like print, read , etc? – Ajay Aug 26 at 13:12
What would a variable 'print' be used for? The words that you have mentioned are more like method names than variables or keywords. – pjp Aug 26 at 14:45
vote up -3 vote down

Because 'continue' already satisfies the purpose

link|flag
That doesnt answer the question! – Ajay Aug 27 at 5:11
vote up 0 vote down

For no good reason whatsoever!

link|flag
vote up 11 vote down

To prevent people from being killed by velociraptors.

alt text

link|flag
2  
Nice! – Zoidberg Aug 26 at 12:52
vote up 1 vote down

See the following link is shows all java reserved words and tells you what versions they where added.

http://java.sun.com/docs/books/tutorial/java/nutsandbolts/%5Fkeywords.html

goto is reserved, even though it is not currently used, never say ever however :)

link|flag
vote up 5 vote down

My personal theory is that the language designers doth said:

We're not going to use GOTO, and damn it, neither are you.

link|flag
vote up 0 vote down

Maybe it will be like in PHP - they've added goto keyword in PHP 5.3.. So maybe it's only not yet implemented in Java (LOL)

link|flag
hmm.. possible :) – Ajay Aug 26 at 14:46
vote up 1 vote down

Note that you can replace most of the benign uses of goto by

  • return

  • break

  • break label

  • throw inside try-catch-finally

link|flag
1  
Exceptions should NEVER be used for flow control – ChssPly76 Aug 26 at 23:39
Exceptions are used for flow control, but should be used only for exceptional cases. For example, one of the uses of goto in C is error-handling, especially if it involves cleaning up. – starblue Aug 27 at 5:09

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.