Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


Is goto statement supported in C#? How about Java?

Answers were Sorted based on User's Feedback



Is goto statement supported in C#? How about Java?..

Answer / ranganathkini

Yes goto is supported in C# and is not supported in Java.
They are quite handy when writing switch statements where in
moving from one case label to another. Example:

Console.Write( "Enter name of country: " );
string country = Console.ReadLine();
switch( country ) {
case "India":
Console.WriteLine( "Welcome to India" );
break;
case "USA":
Console.WriteLine( "Welcome to USA" );
break;
default:
goto case "India";
}

There also a couple of restrictions for using goto
statements in C#:

1. U cannot jump into a statement block such as a loop.
2. U cannot jump out of a class.
3. U cannot exit a finally block.

Java strongly resents the use of the goto statements and
considers it to be a bad practice for programming. In fact
some of the early Java compilers wud show a warning if the
programmer used goto in his program. The message wud be as
follows:

KeywordTest.java:4: 'goto' not supported. Duh.
You have no business programming in Java. Begin erasing Java
Software Development Kit? (Yes/No)
1 life-altering error

Tats someting i wanted to share with u guys. ;-)

Is This Answer Correct ?    2 Yes 2 No

Is goto statement supported in C#? How about Java?..

Answer / swapna

In java goto statement is not supported.
In c# also as far as i know goto statement is not supported.

Is This Answer Correct ?    3 Yes 6 No

Post New Answer

More C Sharp Interview Questions

Say true or false,Private constructor have object or not?

7 Answers   IBM,


Is stringbuilder thread safe c#?

0 Answers  


What is the difference between continue and break statement?

0 Answers  


What is ado c#?

0 Answers  


Explain states of a thread in c#?

0 Answers  


What?s class SortedList underneath?

1 Answers  


What are the Types of JIT and what is econo-JIT

0 Answers   TCS,


Can you instantiate a struct without using a new operator in c#?

0 Answers  


Explain how do you directly call a native function exported from a dll?

0 Answers  


What?s a delegate?

2 Answers  


How can you force derived classes to provide new method implementations for virtual methods?

0 Answers  


What?s the implicit name of the parameter that gets passed into the class? set method?

3 Answers   Visual Soft,


Categories