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. while(true) is not fun

while(true) is not fun

Scheduled Pinned Locked Moved The Lounge
52 Posts 28 Posters 4 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.
  • B BillWoodruff

    for (;;)
    {
    Console.WriteLine("this, and while(true) loops, are an abomination ... as evil as using goto");

    // break; // oh, go on forever
    

    }

    but, writing this was fun :wtf: suggested reading: [^]

    «One day it will have to be officially admitted that what we have christened reality is an even greater illusion than the world of dreams.» Salvador Dali

    B Offline
    B Offline
    Bob Beechey
    wrote on last edited by
    #28

    In the development phase while(true) is fine and clear. When you are clear as to what conditions must be met to break out of the loop, we can set up a meaningful boolean eg while(NoReliablStatus) or whatever. Replacing while(true) with while(notdone) is a waste of time.

    1 Reply Last reply
    0
    • W Wizard of Sleeves

      const DucksFloat = true; : : while(DucksFloat) { }

      Nothing succeeds like a budgie without teeth.

      R Offline
      R Offline
      Rage
      wrote on last edited by
      #29

      "She's a duck !"

      Do not escape reality : improve reality !

      1 Reply Last reply
      0
      • B BillWoodruff

        for (;;)
        {
        Console.WriteLine("this, and while(true) loops, are an abomination ... as evil as using goto");

        // break; // oh, go on forever
        

        }

        but, writing this was fun :wtf: suggested reading: [^]

        «One day it will have to be officially admitted that what we have christened reality is an even greater illusion than the world of dreams.» Salvador Dali

        C Offline
        C Offline
        c6jones720
        wrote on last edited by
        #30

        What about embedded systems? A lot of embedded systems have initialisation code and then the remainder of the system is handled in a single while loop, that's more or less standard practise

        1 Reply Last reply
        0
        • B BillWoodruff

          for (;;)
          {
          Console.WriteLine("this, and while(true) loops, are an abomination ... as evil as using goto");

          // break; // oh, go on forever
          

          }

          but, writing this was fun :wtf: suggested reading: [^]

          «One day it will have to be officially admitted that what we have christened reality is an even greater illusion than the world of dreams.» Salvador Dali

          realJSOPR Offline
          realJSOPR Offline
          realJSOP
          wrote on last edited by
          #31

          When I need an infinite loop, I do it accidentally.

          ".45 ACP - because shooting twice is just silly" - JSOP, 2010
          -----
          You can never have too much ammo - unless you're swimming, or on fire. - JSOP, 2010
          -----
          When you pry the gun from my cold dead hands, be careful - the barrel will be very hot. - JSOP, 2013

          1 Reply Last reply
          0
          • B BillWoodruff

            for (;;)
            {
            Console.WriteLine("this, and while(true) loops, are an abomination ... as evil as using goto");

            // break; // oh, go on forever
            

            }

            but, writing this was fun :wtf: suggested reading: [^]

            «One day it will have to be officially admitted that what we have christened reality is an even greater illusion than the world of dreams.» Salvador Dali

            G Offline
            G Offline
            glennPattonWork3
            wrote on last edited by
            #32

            It's probably been said, but try to do embedded software with out infinite loops. The only time I have seen goto used in the wild was in a avionics control software!

            1 Reply Last reply
            0
            • H honey the codewitch

              state machines are a good argument for gotos. It is impossible as far as I know, to implement every scenario possible for a deterministic finite automata based state machine without using either array based tables, or goto statements. while/for/etc don't cut it because the flow can become too complicated for those constructs. There was a Knuth paper you linked to earlier** that presented a defense of goto that is similar to my defense of it just above. ** here's the code from that paper (Example 1):

              for i := 1 step 1 until m do.
              if A[i] = x then go to found fi;
              not found: i := re+l; m := i;
              A[i] := x; B[i] := 0;
              found: B[i] := B[i]+I;

              rewritten without goto it's even worse (Example 1a):

              i:=1;
              while i < m and A[i] # x do i :-- i+1;
              if i > m then ra := i; A[i] := x; B[i] ::= 0 fi;
              B[i] := B[i]+I;

              Real programmers use butterflies

              T Offline
              T Offline
              trønderen
              wrote on last edited by
              #33

              Knuth's "Example 1" problem using structured statements for alternate loop exits:

              for i in 1:m do

              // main loop body; may contain any number of statements:

              while A[i] != x; // premature loop termination if x is found

              exitwhile // do this on premature loop termination, i.e. "found"
              B[i]++;

              exitfor // do this if loop reaches end of (valid) A[], i.e. "not found"
              A[i] := x;
              B[i] := 1;
              m = i; // new search limit for subsequent x searches

              endfor

              I really miss this construct; I found it truly useful, but have seen it in a single language only, 30+ years ago. Note that both the exitwhile and exitfor clauses are within the scope of the loop statement, with access to the loop control variable and any other variable declared within the loop. (This is essential to the usability of the construct.)

              H 1 Reply Last reply
              0
              • H honey the codewitch

                Microsoft's CodeDOM renderer for C# spits out loops like that. I've also seen Microsoft code that does it this way in the reference source for the .NET BCL. As far as the while, I prefer:

                var done = false;

                while(!done) {
                // do work
                }

                But every C# dev should know how to write while(true) { }

                Real programmers use butterflies

                D Offline
                D Offline
                Dan Neely
                wrote on last edited by
                #34

                honey the codewitch wrote:

                But every C# dev should know how to write while(true) { }

                while (true)
                {
                Console.WriteLine("C# is better than Javascript!");
                }

                Did you ever see history portrayed as an old man with a wise brow and pulseless heart, weighing all things in the balance of reason? Is not rather the genius of history like an eternal, imploring maiden, full of fire, with a burning heart and flaming soul, humanly warm and humanly beautiful? --Zachris Topelius Training a telescope on one’s own belly button will only reveal lint. You like that? You go right on staring at it. I prefer looking at galaxies. -- Sarah Hoyt

                1 Reply Last reply
                0
                • R Rene Balvert

                  for (;;)
                  {
                  Console.WriteLine("this, and while(true) loops, are an abomination ... as evil as using goto");

                  goto get\_me\_out\_of\_here;
                  

                  }

                  get_me_out_of_here:

                  Now you have it all :laugh:

                  T Offline
                  T Offline
                  trønderen
                  wrote on last edited by
                  #35

                  #define ever (;;)

                  would allow you to write

                  for ever {...}

                  1 Reply Last reply
                  0
                  • G GuyThiebaut

                    I once had a code-reviewer change my code because I used a while(true). This was done on the principle that one should never use a while(true). The problem is, anyone looking at the code in future may see the condition he used and wonder why, as the condition can never be met. At least my original code is in the version history.

                    “That which can be asserted without evidence, can be dismissed without evidence.”

                    ― Christopher Hitchens

                    T Offline
                    T Offline
                    trønderen
                    wrote on last edited by
                    #36

                    GuyThiebaut wrote:

                    I once had a code-reviewer change my code because I used a while(true).

                    So did I - because it was supposed to be 'while(1)'. Reason: Code should be compilable with K&R C, which didn't provide bool values/constants.

                    1 Reply Last reply
                    0
                    • B BillWoodruff

                      for (;;)
                      {
                      Console.WriteLine("this, and while(true) loops, are an abomination ... as evil as using goto");

                      // break; // oh, go on forever
                      

                      }

                      but, writing this was fun :wtf: suggested reading: [^]

                      «One day it will have to be officially admitted that what we have christened reality is an even greater illusion than the world of dreams.» Salvador Dali

                      M Offline
                      M Offline
                      Marc Clifton
                      wrote on last edited by
                      #37

                      while (true)
                      {
                      if (isPolitican) break;
                      }

                      Latest Articles:
                      Thread Safe Quantized Temporal Frame Ring Buffer

                      1 Reply Last reply
                      0
                      • T trønderen

                        Knuth's "Example 1" problem using structured statements for alternate loop exits:

                        for i in 1:m do

                        // main loop body; may contain any number of statements:

                        while A[i] != x; // premature loop termination if x is found

                        exitwhile // do this on premature loop termination, i.e. "found"
                        B[i]++;

                        exitfor // do this if loop reaches end of (valid) A[], i.e. "not found"
                        A[i] := x;
                        B[i] := 1;
                        m = i; // new search limit for subsequent x searches

                        endfor

                        I really miss this construct; I found it truly useful, but have seen it in a single language only, 30+ years ago. Note that both the exitwhile and exitfor clauses are within the scope of the loop statement, with access to the loop control variable and any other variable declared within the loop. (This is essential to the usability of the construct.)

                        H Offline
                        H Offline
                        honey the codewitch
                        wrote on last edited by
                        #38

                        Yeah - i posted an alternate he provided in that same comment.

                        Real programmers use butterflies

                        T 1 Reply Last reply
                        0
                        • H honey the codewitch

                          Microsoft's CodeDOM renderer for C# spits out loops like that. I've also seen Microsoft code that does it this way in the reference source for the .NET BCL. As far as the while, I prefer:

                          var done = false;

                          while(!done) {
                          // do work
                          }

                          But every C# dev should know how to write while(true) { }

                          Real programmers use butterflies

                          R Offline
                          R Offline
                          Rusty Bullet
                          wrote on last edited by
                          #39

                          At least GOTO got a name of a style - spaghetti code!

                          1 Reply Last reply
                          0
                          • H honey the codewitch

                            Yeah - i posted an alternate he provided in that same comment.

                            Real programmers use butterflies

                            T Offline
                            T Offline
                            trønderen
                            wrote on last edited by
                            #40

                            I didn't find the alternative nearly as explicit and comprehensible as the exitfor/exitwhile mechanism.

                            H 1 Reply Last reply
                            0
                            • B BillWoodruff

                              for (;;)
                              {
                              Console.WriteLine("this, and while(true) loops, are an abomination ... as evil as using goto");

                              // break; // oh, go on forever
                              

                              }

                              but, writing this was fun :wtf: suggested reading: [^]

                              «One day it will have to be officially admitted that what we have christened reality is an even greater illusion than the world of dreams.» Salvador Dali

                              J Offline
                              J Offline
                              James Curran
                              wrote on last edited by
                              #41

                              Once I found in the company's common "utility" .H file, this line: #define ever (;;) so you could write: for ever { ....} But, all of this ignores one basic truth of code: ALL LOOPS END! -- one way or another. Somewhere buried in your code is something along the lines of: if (realExitCondition) break; so you might as well put it into the `while()`.

                              Truth, James

                              T 1 Reply Last reply
                              0
                              • T trønderen

                                I didn't find the alternative nearly as explicit and comprehensible as the exitfor/exitwhile mechanism.

                                H Offline
                                H Offline
                                honey the codewitch
                                wrote on last edited by
                                #42

                                True, it's not. I was simply pointing out that he *did* produce an alternative. As for me I'd prefer a state machine example. Compiled state machines requires gotos (i'm excluding array driven ones here). It's true that some state machines can be implemented without them, but not all of them can. The reason is you need to goto into and out of loops all of the time, just because of how they work. Furthermore state machines more clearly translate to drawn graphs which then directly map to the code, making the code easy to follow if it uses gotos, but not if it uses the array driven style. In this article[^] there's some coverage of what that looks like.

                                Real programmers use butterflies

                                1 Reply Last reply
                                0
                                • B BillWoodruff

                                  for (;;)
                                  {
                                  Console.WriteLine("this, and while(true) loops, are an abomination ... as evil as using goto");

                                  // break; // oh, go on forever
                                  

                                  }

                                  but, writing this was fun :wtf: suggested reading: [^]

                                  «One day it will have to be officially admitted that what we have christened reality is an even greater illusion than the world of dreams.» Salvador Dali

                                  O Offline
                                  O Offline
                                  obermd
                                  wrote on last edited by
                                  #43

                                  I once wrote the following code: var HellFreezesOver = false do until(HellFreezesOver) // code loop The language I was working in didn't have the concept of an infinite loop and I needed one for this application. Of course, the application terminated when the Red Sox won the World Series in 2004.

                                  T 1 Reply Last reply
                                  0
                                  • J James Curran

                                    Once I found in the company's common "utility" .H file, this line: #define ever (;;) so you could write: for ever { ....} But, all of this ignores one basic truth of code: ALL LOOPS END! -- one way or another. Somewhere buried in your code is something along the lines of: if (realExitCondition) break; so you might as well put it into the `while()`.

                                    Truth, James

                                    T Offline
                                    T Offline
                                    trønderen
                                    wrote on last edited by
                                    #44

                                    James Curran wrote:

                                    But, all of this ignores one basic truth of code: ALL LOOPS END!

                                    Because no device with embedded code will last forever. So you could include some sort of "while (this device is not being decomposed into its constituents for recycling purposes) {...}". The question is how the device can perform this test, and take the proper actions to terminate the loop. Lots of embedded infinite loops won't even survive a change of battery. Yet the problem is the same: A test like "while (battery power is available) {...}" has a fairly low probablity of being able to perform a loop exit. Larger systems, e.g. running databases, may have UPS systems that allow them to do a controlled shutdown, such as to write in-memory logs to stable storage. Lots of servers, both web servers and other kinds of servers, are stateless and have no data to save between requests. They sit waiting for a request, process it, and sit down waiting for the next request. There is nothing to do if the machine is turned off, the process is forcefully terminated, or a power outage occurs. So why should they have a loop exit handling? It has no meaning. Their purpose is to run indefinitely. If it stops, it stops within its loop.

                                    J 1 Reply Last reply
                                    0
                                    • O obermd

                                      I once wrote the following code: var HellFreezesOver = false do until(HellFreezesOver) // code loop The language I was working in didn't have the concept of an infinite loop and I needed one for this application. Of course, the application terminated when the Red Sox won the World Series in 2004.

                                      T Offline
                                      T Offline
                                      trønderen
                                      wrote on last edited by
                                      #45

                                      My variant of the same was "WW3".

                                      1 Reply Last reply
                                      0
                                      • T trønderen

                                        James Curran wrote:

                                        But, all of this ignores one basic truth of code: ALL LOOPS END!

                                        Because no device with embedded code will last forever. So you could include some sort of "while (this device is not being decomposed into its constituents for recycling purposes) {...}". The question is how the device can perform this test, and take the proper actions to terminate the loop. Lots of embedded infinite loops won't even survive a change of battery. Yet the problem is the same: A test like "while (battery power is available) {...}" has a fairly low probablity of being able to perform a loop exit. Larger systems, e.g. running databases, may have UPS systems that allow them to do a controlled shutdown, such as to write in-memory logs to stable storage. Lots of servers, both web servers and other kinds of servers, are stateless and have no data to save between requests. They sit waiting for a request, process it, and sit down waiting for the next request. There is nothing to do if the machine is turned off, the process is forcefully terminated, or a power outage occurs. So why should they have a loop exit handling? It has no meaning. Their purpose is to run indefinitely. If it stops, it stops within its loop.

                                        J Offline
                                        J Offline
                                        James Curran
                                        wrote on last edited by
                                        #46

                                        Quote:

                                        Because no device with embedded code will last forever. So you could include some sort of "while (this device is not being decomposed into its constituents for recycling purposes) {...}". The question is how the device can perform this test, and take the proper actions to terminate the loop.

                                        Even the most standard loop (`for(int i=0; i < str.Length; ++i)`) will not survive a power cut, so that's not the case we are interested in. Most embedded systems still have a "power" switch, which is not hard-wired to the power, but instead, starts the "power-down" procedure. Hence: while (!shutting_down()) {}

                                        Truth, James

                                        T 1 Reply Last reply
                                        0
                                        • H honey the codewitch

                                          state machines are a good argument for gotos. It is impossible as far as I know, to implement every scenario possible for a deterministic finite automata based state machine without using either array based tables, or goto statements. while/for/etc don't cut it because the flow can become too complicated for those constructs. There was a Knuth paper you linked to earlier** that presented a defense of goto that is similar to my defense of it just above. ** here's the code from that paper (Example 1):

                                          for i := 1 step 1 until m do.
                                          if A[i] = x then go to found fi;
                                          not found: i := re+l; m := i;
                                          A[i] := x; B[i] := 0;
                                          found: B[i] := B[i]+I;

                                          rewritten without goto it's even worse (Example 1a):

                                          i:=1;
                                          while i < m and A[i] # x do i :-- i+1;
                                          if i > m then ra := i; A[i] := x; B[i] ::= 0 fi;
                                          B[i] := B[i]+I;

                                          Real programmers use butterflies

                                          G Offline
                                          G Offline
                                          Grant Rostig
                                          wrote on last edited by
                                          #47

                                          Where does the block of the for statement end, please? I looked at the original article, page 266 for those interested, but I'm still not clear on it.

                                          honey the codewitch wrote:

                                          for i := 1 step 1 until m do. if A[i] = x then go to found fi; not found: i := re+l; m := i; A[i] := x; B[i] := 0; found: B[i] := B[i]+I;

                                          T H 2 Replies 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