If the statement above is correct, then why when I use reflector on .Net BCL I see it is used a lot?
EDIT: let me rephrase: are all the GO-TO's I see in reflector written by humans or compilers?
|
|
The above isn't really correct - it was a polemical device used by Dijkstra at a time when gotos were about the only flow control structure in use. In fact, several people have produced rebuttals, including Knuth's classic "Structured Programming Using Goto" paper (title from memory). And there are some situations (error handling, state machines) where gotos can produce clearer code (IMHO), than the "structured" alternatives. |
|||||||||||||||
|
|
I think the following excerpt from the Wikipedia Article on Goto is particularly relevant here:
So, on the one hand we have Edsger Dijkstra (a incredibly talented computer scientist) arguing against the use of the On the other hand, we have Donald Knuth (another incredibly talented computer scientist) arguing that using Ultimately, IMHO, I believe both men are correct. Dijkstra is correct in that overuse of the However, Knuth is also correct as, in the "real world", where one must take a pragmatic approach, the |
|||||||||||
|
|
These If you find yourself in the need to use Other than that, there are very few instances the use of In response to your edit: No, not all gotos are compiler generated, but a lot of them result from compiler generated state machines (enumerators), switch case statements or optimized if else structures. There are only a few instances you'll be able to judge wether it was the compiler or the original developer. You can get a good hint by looking at the funtion/class name, a compiler will generate "forbidden" names to avoid name clashes with your code. If everything looks normal and the code has not been optimized or obfuscated the use of goto is probably intended. |
|||||||||||
|
|
Obligatory XKCD
|
|||||||||
|
|
Keep in mind that the code you are seeing in Reflector is a disassembly -- Reflector is looking at the compiled byte codes and trying to piece together the original source code. With that, you must remember that rules against So, Reflector looks at code much like this:
And must realize that it was actually coded as:
Sometimes the code being read to too complicated for it to recognize the pattern. |
|||||||
|
|
|
|||
|
|
|
When compiled down to assembly code, all control structured and converted to (un)conditional jumps. However, the optimizer may be too powerful, and when the disassembler cannot identify what control structure a jump pattern corresponds to, the always-correct statement, i.e. This has nothing to do with the harm(ful|less)ness of |
||||
|
|
|
The general rule is that you don't need to use The When you are looing at the code using Reflector, you are not seeing the actual code. You are seeing code that is recreated from what the compiler produced from the original code. When you see a |
|||
|
|
|
what about a double loop or many nested loops, of which you have break out, for ex.
in this case you should consider that here the following should be done with break:
|
||||
|
|
because no matter how madly we(human) use Believe me... Reading others code with That is why you see it used in low level (machine languages) and not in high level (human languages e.g. C#,Python...) ;) |
|||
|
|
|
I sometimes use goto when I want to perform a termination action:
So instead of hitting |
|||||||||||||
|
|
In decompiled code, virtually all As to valid reasons for putting them in your own code? The main one I can think of is where the language you are using does not provide a control construct suitable for the problem you are tackling; languages which make it easy to make custom control flow systems typically don't have |
|||||||
|
|
"C provides the infinitely-abusable goto statement, and labels to branch to. Formally, the goto is never necessary, and in practice it is almost always easy to write code without it. We have not used goto in this book." -- K&R (2nd Ed.) : Page 65 |
|||
|
|
|
If it's harmful or not, it's a matter of likes and dislikes of each one. I personally don't like them, and find them very unproductive as they attempt maintainability of the code. Now, one thing is how gotos affect our reading of the code, while another is how the jitter performs when found one. From Eric Lippert's Blog, I'd like to quote:
So, in fact the compiler transforms pretty each flow control structure into goto/label pattern while emitting IL. When reflector reads the IL of the assembly, it recognizes the pattern, and transforms it back to the appropriate flow control structure. In some cases, when the emitted code is too complicated for reflector to understand, it just shows you the C# code that uses labels and gotos, equivalent to the IL it's reading. This is the case for example when implementing |
|||
|
|
|
GOTO can be useful, if it's not overused as stated above. Microsoft even uses it in several instances within the .NET Framework itself. |
||||
|
|