Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. goto... Who uses it?

goto... Who uses it?

Scheduled Pinned Locked Moved The Lounge
questionlearning
131 Posts 66 Posters 13 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • K Kevin Marois

    The two examples you posted are NOT the same. The second one restarts the 'while' loop all over again, while the first one continues with the next iteration of the same loop. The goto had a totally different effect than the continue Paste this into a console app and walk it through:

    namespace ConsoleApplication1
    {
    class Program
    {
    static void Main(string[] args)
    {
    Test();
    Test2();

            Console.ReadLine();
           
        }
    
        static void Test()
        {
            Console.WriteLine("Test");
            int x = 0;
    
            while (true)
            {
                x++;
    
                if (x < 10)
                {
                    continue;
                }
    
                Console.WriteLine(x);
            }
        }
    
        static void Test2()
        {
        x:
            Console.WriteLine("Test2");
            int x = 0;
    
            while (true)
            {
                if (x < 10)
                {
                    goto x;
                }
    
                Console.WriteLine(x);
            }
        }
    }
    

    }

    The first one starts printing at 10 and never stops because of the continue. The second one never does anything expect print "test2" because of the goto. 2 entirely different functionalities between 'goto' and 'continue'

    If it's not broken, fix it until it is

    D Offline
    D Offline
    dan sh
    wrote on last edited by
    #61

    I am not saying continue and goto are same (just realized it now). I am saying that internally it is used.

    "Bastards encourage idiots to use Oracle Forms, Web Forms, Access and a number of other dinky web publishing tolls.", Mycroft Holmes[^]

    1 Reply Last reply
    0
    • J J4amieC

      If that's T-SQL in anything resembling modern SQL Server, there are much, much better constructs for error handling now.

      C Offline
      C Offline
      Chris Maunder
      wrote on last edited by
      #62

      try..catch is so bourgeois.

      cheers, Chris Maunder The Code Project | Co-founder Microsoft C++ MVP

      1 Reply Last reply
      0
      • D DanielSheets

        This isn't a programming question. Anyway... I find it useful in very few situations. It can make for cleaner code if used correctly. Of course, it can also be over used.

        S Offline
        S Offline
        Septimus Hedgehog
        wrote on last edited by
        #63

        Fortran IV made extensive use of them. I used to love them at the time. Since then, I've never used them. Perhaps they do have a use and if teams that write compilers put them in then whose to argue for and against?

        If there is one thing more dangerous than getting between a bear and her cubs it's getting between my wife and her chocolate.

        K 1 Reply Last reply
        0
        • D DanielSheets

          This isn't a programming question. Anyway... I find it useful in very few situations. It can make for cleaner code if used correctly. Of course, it can also be over used.

          B Offline
          B Offline
          Brisingr Aerowing
          wrote on last edited by
          #64

          I only use it in shell scripts/batch files, and I am working on setting up Python as my default Windows shell system. That will take some work, but I think it will be worth it!

          Bob Dole

          The internet is a great way to get on the net.

          :doh: 2.0.82.7292 SP6a

          1 Reply Last reply
          0
          • D DanielSheets

            This isn't a programming question. Anyway... I find it useful in very few situations. It can make for cleaner code if used correctly. Of course, it can also be over used.

            C Offline
            C Offline
            C P User 3
            wrote on last edited by
            #65

            None dare mention the fact that "break" and "goto" are really the same thing

            R 1 Reply Last reply
            0
            • D DanielSheets

              This isn't a programming question. Anyway... I find it useful in very few situations. It can make for cleaner code if used correctly. Of course, it can also be over used.

              M Offline
              M Offline
              Member 4608898
              wrote on last edited by
              #66

              I hate being restricted by programming standards that explicitly say "you should not use gotos". What is the point of using a language that has gotos and not being allowed to use them. It is like someone giving you an ornamental chocolate and your mum telling you that you aren't allowed to eat it because it looks pretty. Why did they give it to us if we weren't meant to eat it. Why does a language have gotos if we are not allowed to use them.:confused: When I was in airlines, the technical manager said that if anyone wanted to use gotos, he wanted a writeup of reasons. Now here was a challenge: all I had to do was reproduce the essay "structured programming using gotos" which I wrote when I was in Uni (1976), with snippets of how much simpler the code was with gotos than without. It was about 3 pages. The goto restriction was lifted for me and no one ever questioned it. The same thing happened when I was in medical. Guess they had never dealt with a real computer scientist before. Everyone else was an ex engineer, astronomer, mathematician or physicist. They just read about programming concepts: they never had to do the research or write up essays on simple, everyday things like use of do-while-false loops or indentation styles.

              1 Reply Last reply
              0
              • G Gary Wheeler

                I've not used it in 15 years or so, in any of my C# or C++ applications. There are too many better alternatives to goto in those languages. The last time I used goto was in C in the 90's, when the compilers I was using didn't (reliably) support exceptions.

                Software Zen: delete this;

                M Offline
                M Offline
                Member 4608898
                wrote on last edited by
                #67

                I try to squeeze at least one in at every site where I've worked, just to prove a point (the points being, nobody reads the programming standards and not many people actually read code). I've succeeded in 6 out of 9.

                1 Reply Last reply
                0
                • L Lost User

                  DanielSheets wrote:

                  It can make for cleaner code if used correctly.

                  Your definition of "cleaner code" is quite odd then. There is no "correct" usage of it in modern high level languages. It simply creates an unmaintainable ball of string.

                  Computers have been intelligent for a long time now. It just so happens that the program writers are about as effective as a room full of monkeys trying to crank out a copy of Hamlet.

                  J Offline
                  J Offline
                  jschell
                  wrote on last edited by
                  #68

                  Collin Jasnoch wrote:

                  There is no "correct" usage of it in modern high level languages

                  I doubt the the absoluteness of that statement. It is likely there are few cases but even one refutes your statement.

                  S 1 Reply Last reply
                  0
                  • D dusty_dex

                    That looks bad to me. Aren't you supposed to use

                    break ;

                    to jump out of loops? Exception handling will usually bog down the handled block of code.

                    Q. Hey man! have you sorted out the finite soup machine? A. Why yes, it's celery or tomato.

                    J Offline
                    J Offline
                    jschell
                    wrote on last edited by
                    #69

                    dusty_dex wrote:

                    Exception handling will usually bog down the handled block of code.

                    If that is a reference to performance then as stated it isn't true.

                    1 Reply Last reply
                    0
                    • C Chris Maunder

                      In SQL - fairly often to jump to the error handler at the end of our sprocs. I'll admit there's no good reason we do this, since it's easy enough for us to avoid this with if statements, but it's a pattern used in our original code and so for consistency we stuck with it:

                      Create Procedure MyProc as

                      Begin Tran
                      
                      -- Do stuff...
                      
                      if @@error <> 0 goto errorHandler
                      
                      Commit Tran
                      Return 0
                      

                      errorHandler:
                      Rollback Tran
                      Return 1

                      cheers, Chris Maunder The Code Project | Co-founder Microsoft C++ MVP

                      J Offline
                      J Offline
                      Jan Steyn
                      wrote on last edited by
                      #70

                      An error condition returns the same value as a non-error condition? Many hamsters are dying because of that.

                      C 1 Reply Last reply
                      0
                      • J Jan Steyn

                        An error condition returns the same value as a non-error condition? Many hamsters are dying because of that.

                        C Offline
                        C Offline
                        Chris Maunder
                        wrote on last edited by
                        #71

                        Oops. Typo.

                        cheers, Chris Maunder The Code Project | Co-founder Microsoft C++ MVP

                        1 Reply Last reply
                        0
                        • S Septimus Hedgehog

                          Fortran IV made extensive use of them. I used to love them at the time. Since then, I've never used them. Perhaps they do have a use and if teams that write compilers put them in then whose to argue for and against?

                          If there is one thing more dangerous than getting between a bear and her cubs it's getting between my wife and her chocolate.

                          K Offline
                          K Offline
                          Kyudos
                          wrote on last edited by
                          #72

                          Have you ever tried to "unuse" GOTO in optimized F77? The logic required to replicate the program flow without it is often horrendous and generally not worth the effort if the original code works...

                          1 Reply Last reply
                          0
                          • D DanielSheets

                            This isn't a programming question. Anyway... I find it useful in very few situations. It can make for cleaner code if used correctly. Of course, it can also be over used.

                            Y Offline
                            Y Offline
                            YvesDaoust
                            wrote on last edited by
                            #73

                            Blame has been put on the goto statement by a very famous article. In the old days of FORTRAN, with its old fashioned control statements, including conditional, assigned and computed goto's, or in early versions of the Basic language with its goto/gosub mechanisms, you had little other option to control the flow of execution than branching to numeric labels. Writing clean code was indeed a challenge, as it was hard to make the structure of the code apparent. Things have changed a lot thanks to structured languages so that pinches of goto's every here and there are quite acceptable, and possibly more advisable than some contortions used to avoid them at all costs. My favorite usage is when implementing state machines, every state being represented by a jump label and the decision-making block of code following it, which includes a number of explicit branches to other states. Such coding can involve tenths of goto's, while remaining crystal clear readable.

                            1 Reply Last reply
                            0
                            • C Chris Maunder

                              In SQL - fairly often to jump to the error handler at the end of our sprocs. I'll admit there's no good reason we do this, since it's easy enough for us to avoid this with if statements, but it's a pattern used in our original code and so for consistency we stuck with it:

                              Create Procedure MyProc as

                              Begin Tran
                              
                              -- Do stuff...
                              
                              if @@error <> 0 goto errorHandler
                              
                              Commit Tran
                              Return 0
                              

                              errorHandler:
                              Rollback Tran
                              Return 1

                              cheers, Chris Maunder The Code Project | Co-founder Microsoft C++ MVP

                              B Offline
                              B Offline
                              Brady Kelly
                              wrote on last edited by
                              #74

                              Hasn't T-SQL had try-catch since 2005?

                              1 Reply Last reply
                              0
                              • D DanielSheets

                                This isn't a programming question. Anyway... I find it useful in very few situations. It can make for cleaner code if used correctly. Of course, it can also be over used.

                                F Offline
                                F Offline
                                Fred Flams
                                wrote on last edited by
                                #75

                                I'm still using GOTOs, not in my C# / JAVA / C++ code but in my SQL Code. It is still very usefull in SQL for error handling, MS introduced the BEGIN/END TRY/CATCH structure but it is not portable on version of SQL older than 2005 and it is absolutely not portable "as is" on another SQL Engine and most of the customers I've worked for have that mandatory requirement to be able to switch engine as they see fit (even if 90% of them will never take that step and stick to MS SQL Server).

                                1 Reply Last reply
                                0
                                • D DanielSheets

                                  This isn't a programming question. Anyway... I find it useful in very few situations. It can make for cleaner code if used correctly. Of course, it can also be over used.

                                  T Offline
                                  T Offline
                                  Tieske8
                                  wrote on last edited by
                                  #76

                                  Goto is a perfectly well usable statement. It's been considered a bad practice from the times people tended to write spaghetti code by using only goto for flow control in their code. It is a tool, and if you use it right, it will help you write simple and maintainable code. But as with any tool, if you use it in a bad way, you get what you deserve. If I have nested code, if-then, several levels deep, I prefer goto. Much cleaner. Writing a function that throws the same exception in 10 places (example elsewhere in this discussion, with the critique he should have used exceptions) is more complex than the provided sample with the gotos (which I like). Could have done it myself. As a note; Lua 5.2 (released 2012) got the goto statement as a new enhancement to the language (so after 20 years of Lua)

                                  Cigarettes are a lot like hamsters. Perfectly harmless, until you put it in your mouth and light it on fire.

                                  1 Reply Last reply
                                  0
                                  • D DanielSheets

                                    This isn't a programming question. Anyway... I find it useful in very few situations. It can make for cleaner code if used correctly. Of course, it can also be over used.

                                    S Offline
                                    S Offline
                                    Super Lloyd
                                    wrote on last edited by
                                    #77

                                    I am not afraid to say I used it at least 4 or 5 times! (in the last 10 years!...) Even once recently! I hate the mindless peer pressure against it, use it even it's ugly if you like! Use whatever makes your code more beautiful! ^^ Just so you know, the (mindless violent) hate against it is based on the following argument: "it's not maintainable" i.e. "it break the flow of the code which should be otherwise obvious" That much is true, long methods with goto label hidden 300 line below are big traps. But this is true of 300 lines method without goto too!!! So, shortly, use it if it's the shorter more expressive solution. If someone doesn't like it, suggest them to fix the code. And choose the most expressive readable code between theirs and yours after that! ;P Anyway, when one use goto? Err... truthfully only one C# exemple comes to my mind (apart switch): how to break out simple of multiple nest loop

                                    for ()
                                    for(..)
                                    for(..)
                                    {
                                    if(condition)
                                    goto exit_loop;
                                    }
                                    exit_loop:;

                                    Just so you know, a typical C goto will be for clean up, as in

                                    if (success1) {...}
                                    else goto failure
                                    If (sucess2) { ...}
                                    goto failure
                                    ...
                                    return;
                                    failure:

                                    but in C# this is more nicely expressed with try {} catch {} finally {} which doesn't need any goto

                                    My programming get away... The Blog... DirectX for WinRT/C# since 2013! Taking over the world since 1371!

                                    A 1 Reply Last reply
                                    0
                                    • E emartinho

                                      Wow. I expected more of a flame war. Bring on the rants!!!!

                                      S Offline
                                      S Offline
                                      Super Lloyd
                                      wrote on last edited by
                                      #78

                                      I hate all those anti-goto people! :mad:

                                      My programming get away... The Blog... DirectX for WinRT/C# since 2013! Taking over the world since 1371!

                                      R 1 Reply Last reply
                                      0
                                      • D dan sh

                                        I beg to differ here. Check out the IL generated for the two methods:

                                        void Test()
                                        {
                                        while (true)
                                        {
                                        string str = "Something";

                                                    if (str.Length != 10)
                                                    {
                                                        continue;
                                                    }
                                        
                                                }
                                            }
                                        
                                            void Test2() {
                                            x:
                                                while (true)
                                                {
                                                    string str = "Something";
                                        
                                                    if (str.Length != 10)
                                                    {
                                                        goto x;
                                                    }
                                        
                                                }
                                            }
                                        

                                        //without GOTO .method private hidebysig instance void Test() cil managed { // Code size 32 (0x20) .maxstack 2 .locals init ([0] string str, [1] bool CS$4$0000) IL_0000: nop IL_0001: br.s IL_001c IL_0003: nop IL_0004: ldstr "Something" IL_0009: stloc.0 IL_000a: ldloc.0 IL_000b: callvirt instance int32 [mscorlib]System.String::get_Length() IL_0010: ldc.i4.s 10 IL_0012: ceq IL_0014: stloc.1 IL_0015: ldloc.1 IL_0016: brtrue.s IL_001b IL_0018: nop IL_0019: br.s IL_001c IL_001b: nop IL_001c: ldc.i4.1 IL_001d: stloc.1 IL_001e: br.s IL_0003 } // end of method Proof::Test //With GOTO .method private hidebysig instance void Test2() cil managed { // Code size 32 (0x20) .maxstack 2 .locals init ([0] string str, [1] bool CS$4$0000) IL_0000: nop IL_0001: br.s IL_001c IL_0003: nop IL_0004: ldstr "Something" IL_0009: stloc.0 IL_000a: ldloc.0 IL_000b: callvirt instance int32 [mscorlib]System.String::get_Length() IL_0010: ldc.i4.s 10 IL_0012: ceq IL_0014: stloc.1 IL_0015: ldloc.1 IL_0016: brtrue.s IL_001b IL_0018: nop IL_0019: br.s IL_0001 IL_001b: nop IL_001c: ldc.i4.1 IL_001d: stloc.1 IL_001e: br.s IL_0003 } // end of method Proof::Test2

                                        "Bastards encourage idiots to use Oracle Forms, Web Forms, Access and a number of other dinky web publishing tolls.", Mycroft Holmes[^]

                                        S Offline
                                        S Offline
                                        Super Lloyd
                                        wrote on last edited by
                                        #79

                                        you're right, but bad example! ^^

                                        void Test()
                                        {
                                        while (true)
                                        {
                                        string str = "Something";

                                                    if (str.Length != 10)
                                                    {
                                                        continue;
                                                    }
                                                   blabla();
                                        
                                                }
                                            }
                                        
                                            void Test2() {
                                                while (true)
                                                {
                                                    string str = "Something";
                                        
                                                    if (str.Length != 10)
                                                    {
                                                        goto next;
                                                    }
                                                   blabla();
                                        

                                        next:;
                                        }
                                        }

                                        My programming get away... The Blog... DirectX for WinRT/C# since 2013! Taking over the world since 1371!

                                        1 Reply Last reply
                                        0
                                        • J John M Drescher

                                          Honestly, I have written at least 1 million lines of code since I have used a goto. Although I do remember using a few gotos in the 1990s. Also long gone from my coding is writing x86 assembly code.

                                          John

                                          J Offline
                                          J Offline
                                          JohnLBevan
                                          wrote on last edited by
                                          #80

                                          In my early days I used them a lot - then I discovered methods and functions and stopped using them. The only exceptions are certain languages which require goto (e.g. VBScript/VBA error handling - on error goto 0). In studying computer science I was also told that there was one valid known use of a goto statement, which was in a washing machine with an 8 bit processor where the use of the goto statement allowed for a saving on hardware costs. Sadly I can't remember the detail / can't find more info online.

                                          1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • World
                                          • Users
                                          • Groups