Can i use goto statement to jump from one method into another in c++ , java or c#.

link|improve this question

@ShashankKadne: That is incorrect, C++ does not support goto jumping between methods. – Greg Hewgill Feb 25 at 7:10
@GregHewgill: I can't even label a method and then call goto to jump to that label??....i never tried it! – Shashank Kadne Feb 25 at 7:14
1  
@ShashankKadne - no you can't. Try it. The compiler won't let you. And in the Java case, goto is not supported because the designers thought it was a bad language feature, not because of any real or imaginary security concerns. – Stephen C Feb 25 at 7:19
Thanks folks...that means my comment makes no sense. I should better remove it. – Shashank Kadne Feb 25 at 7:23
feedback

3 Answers

up vote 2 down vote accepted

Not with java. goto is a reserved word (statement) but it is not useable by design.

Further reading:

link|improve this answer
says a good answer. – MJM Feb 25 at 7:39
Interesting. Had no idea about goto in java being just wrong syntax. – Jason Webb Feb 25 at 7:46
feedback

Not in C#. It is possible to jump inside one method though.

link|improve this answer
feedback

In VB6 goto statement is used to jump some where inside the same method.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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