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

    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
            • G Grant Rostig

              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 Offline
              T Offline
              trønderen
              wrote on last edited by
              #48

              Looks as if someone has done a rather unsuccessful OCR of the Knuth paper :-) Preserving the indents and correcting the OCR errors (I should be 1, re should be m) make it look like

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

              So, the for loop body is no more than the 'if .. goto' statement. (Yet, even if this was in 1974, I am surprised that Knuth made that messy layout - especially the four statements after the 'not found' label. Structured statements came in Algol in 1960; Pascal arrived in 1970, so ideas of proper identetation and formatting shouldn't be new to him!)

              1 Reply Last reply
              0
              • J James Curran

                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 Offline
                T Offline
                trønderen
                wrote on last edited by
                #49

                James Curran wrote:

                Most embedded systems still have a "power" switch, which is not hard-wired to the power, but instead, starts the "power-down" procedure

                What do you plan to to in this omnipresent "power-down" procedure when there is nothing to save or cleanup? If your code runs multiple threads, each executiong an infinite loop (which is quite common in embedded code), will you broadcast a 'power-down' message to each of these loops and let them all take various terminating actions? Conceptually, almost all interrupt handlers are infinite loops, making another iteration when an interrupt is received. Will you signal the 'power-down' to each handler as well, for them to do their termination handling? If there are cleanup actions to be done for one, or possibly a couple, of the threads, you should of course send these theads a termination request for orderly shutdown. But lots of embedded threads, or even complete embedded systems, have no cleanup requirements. They have no need for any 'shutting down' signal, but can be cut off without formalities, just like when power disappears. The CHILL language was specifically designed for embedded systems (specifically: phone switches), and it provided an explicit loop mechanism: 'for ever do ...'. Phone switches are also illustrating that the system as a whole is designed for never terminating. If a phone switch stops running, it is due to an error or other exceptional condition; the code design assumes perpetual running.

                1 Reply Last reply
                0
                • G Grant Rostig

                  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;

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

                  I think it continues through the end of the code. I don't know that it is explicitly closed. Frankly, I can't stand this form of pseudo code. It is like cave drawings.

                  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

                    U Offline
                    U Offline
                    User 14060113
                    wrote on last edited by
                    #51

                    READY.
                    10 PRINT "HELLO"
                    20 GOTO 10
                    RUN

                    1 Reply Last reply
                    0
                    • B BillWoodruff

                      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

                      F Offline
                      F Offline
                      Frank Malcolm
                      wrote on last edited by
                      #52

                      Interesting that the paper you linked was headed Edgar Dijkstra when his name is Edsger. Maybe Dutch is a bit too hard for the editors at the ACM.

                      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