Jump to content

Talk:Control flow

Page contents not supported in other languages.
From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by 194.13.145.5 (talk) at 12:12, 12 April 2010. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
WikiProject iconComputing B‑class
WikiProject iconThis article is within the scope of WikiProject Computing, a collaborative effort to improve the coverage of computers, computing, and information technology on Wikipedia. If you would like to participate, please visit the project page, where you can join the discussion and see a list of open tasks.
BThis article has been rated as B-class on Wikipedia's content assessment scale.
???This article has not yet received a rating on the project's importance scale.
WikiProject iconComputer science B‑class Top‑importance
WikiProject iconThis article is within the scope of WikiProject Computer science, a collaborative effort to improve the coverage of Computer science related articles on Wikipedia. If you would like to participate, please visit the project page, where you can join the discussion and see a list of open tasks.
BThis article has been rated as B-class on Wikipedia's content assessment scale.
TopThis article has been rated as Top-importance on the project's importance scale.
Things you can help WikiProject Computer science with:

From Murray Langton:

Nobody commented on my outline for a complete rewrite, so I have done the rewrite.

"Constructs to be avoided"

Wikipedia is not prescriptive; it can at best report what others prescribe. "You should not [otherwise] [do X]" is something Wikipedia must never, ever say. "Smith and Thompson and Jones all agree you shouldn't [do X]" and "nobody [does X] anymore [because]" are fine.

The part about goto was redundant with the section on goto, so I deleted it. The historical and arcane control flow structures were not discussed, so I merged them in their appropriate sections. I'm sad to say the link to Knuth's paper was broken and I couldn't find a substitute; hope you paid those ACM subscription fees. 82.92.119.11 21:26, 14 September 2005 (UTC)[reply]

Redirect from Elif

There is a redirect from the ELIF wikipedia entry, but although this is a subclass of the IF command, there is no reference to ELIF in this article

fixed --Krischik T 13:12, 24 February 2006 (UTC)[reply]

Control flow constructs are a special kind of statements

IMHO Statements are a larger group containing control flow constructs as special case. For example: Many programming languages have assignment-, declaration-, I/O- and assert-statements which are not control flow constructs. I improved the statement article a little bit and added some links to it.

Lanugage examples.

I think the modlue has to many language examples. We should realy concentrate on the actual contruct and how it works and leave programming language dependent part to pages describing that language - or even better Wikibooks.

As it is I think the page is not clear enough

--Krischik T 11:49, 17 February 2006 (UTC)[reply]

Loop with test in the middle

As Ada actualy got the Loop with test in the middle I wonder ot it actually is a Proposed control structure. --Krischik T 07:25, 23 February 2006 (UTC)[reply]

How does Ada cope when you want to exit from the middle of several nested loops (as per example of searching 2-D array)? Murray Langton 21:40, 23 February 2006 (UTC)[reply]
Sorry, query about wrong control structure. Murray Langton 21:42, 23 February 2006 (UTC)[reply]
You can name a look and then use exit Outer_Loop when Condition; --Krischik T 07:03, 24 February 2006 (UTC)[reply]

Exceptions vs continuations

In 6 Structured non-local control flow it says: "Exceptions, conditions, and continuations are three common sorts of non-local control constructs."

Are PL/1 conditions any different from exceptions? If so, the article should explain how; if not, the two sections should be combined.

-- Brock

Interesting point. The difference is a bit like if then goto vs. if then else One is structured the other is not but apart from that they do the same thing. BTW: Some Basic dialects and Rexx have that contruct as well. --Krischik T 13:08, 24 February 2006 (UTC)[reply]
and C has for(;;) or while(1). similar thing happens 84.16.123.194 (talk) 18:03, 9 March 2008 (UTC)[reply]

I don't know about PL/1, but the distinguishing feature of conditions in Common Lisp is that they can be ignored (if they are not errors) and resumed (with restarts). In other words, unlike exceptions, the stack is not always necessarily unwound. --FOo (talk) 23:44, 9 March 2008 (UTC)[reply]

GA failed

For these reasons:

  1. Lead fails to represent the article.
  2. The example that follow this, In many programming languages, a label is an identifier. should state which language it is from.
  3. For every piece of code the language should be mentioned beside it.
  4. For a fuller discussion on the drawbacks of goto, see Goto., should go in the front.
  5. Inline external links should be placed in a footnotes or references section at the bottom of the article.
  6. A number of authors have pointed out that using goto is often acceptable, like whom for example or where is this piece of info from?
  7. Subroutines can be made much more useful by providing them with parameters and what are the disadvantages of not providing params?
  8. In need of wikilinks for definition of words, e. g., tree-traversals, overhead, stack ...
  9. The program will end execution after the third line without continuing into the function. ... why?
  10. The fact that such minimalism is possible does not necessarily mean that it is desirable and who said that? ref please or make it more NPOV.
  11. after all, computers theoretically only need one machine instruction (subtract one number from another and branch if the result is negative), but practical computers have dozens or even hundreds of machine instructions., simplistic view maybe ref this part too. Is this really necessary in an encyclopedia.
  12. Languages whose final keyword is of the form: end + initial keyword (with or without space in the middle) tend to be easier to learn and read. says who?
  13. The Choice section should demonstrate statements universally without needing the Ada language. Thus turn every code into Ada-free code or wikilink to other wikipedia articles like: If should point to Conditional statement.
  14. The tables should conform to the Footnotes method for the comments added to them.
  15. The Anecdotal evidence section needs more introduction for non-experts. Lincher 02:29, 16 June 2006 (UTC)[reply]
(Changed User:Lincher's above list from bullets to numbered list to facilitate discussion - Dmeranda 18:17, 30 June 2006 (UTC))[reply]
For (1), I rewrote the lead section so it should meet WP guidelines -- Dmeranda 18:22, 30 June 2006 (UTC)[reply]


Early exit and infinite loops

Deep break/early exit is simulated in C and C++ not through exceptions but via goto's and labels. Also, infinite loops which are conditionless are simulated through labels and gotos as well; this avoids a conditional check if you really want an infinite loop.

ó

Python for-else and while-else constructs

There was some confusion over when the else-clause of a Python for or while loop is executed. A simple test case shows this

for i in [42]:
    if i == 42:
        print 'Breaking out of for loop'
        break
else:
    print 'In else clause of for loop'

when run outputs only "Breaking out of for loop". Likewise changing "i == 42" to "i == 99" and re-running only outputs "In else clause of for loop". So the else clause is executed on if the loop is not exited early by a break statement. -- Dmeranda 16:37, 19 March 2007 (UTC)[reply]

Redirected from "then"

If you type in the word: "then" it comes to this page, however this is about Control Flow. LostNecromancer 22:58, 10 April 2007 (UTC)[reply]

The redirect is probably due to the keyword "then" as used in the "if-then" statement, which one of the most common control flow statements in many programming languages. It should probably more approriately redirect to Conditional statement though as that article is more specific than this one; and unless somebody thinks there is an even more common use of the word "then" which has an article in WP. Remember, redirects are cheap and the main problem with them is when they may point to an obscure article while a better target exists. See Wikipedia:Redirect. - Dmeranda 20:24, 11 April 2007 (UTC)[reply]
I've changed the redirects for Then and Else to now point to the Conditional statement article instead of this one. - Dmeranda 20:47, 11 April 2007 (UTC)[reply]

Merge proposal

This article (Control flow) is quite long - even, I would argue, overlong - and the section called "Choice" is now long enough to be an article in its own right. However, there is already an article about conditional statements, which does not include all the material in this section. If there is to be a separate article about conditional statements, that article should be longer and more in-depth than the corresponding section on this page. Therefore, I propose merging the material in the "Choice" section into conditional statement, and leaving behind a Main Article link, possibly with a short summary (it's usual to have such a summary).

Some might argue that case statements are not conditional statements. However, they are frequently classified as such, and they meet the general definition given in the conditional statement article, so I don't think this position would be justified.—greenrd 13:33, 14 April 2007 (UTC)[reply]

I support this merge as the section while informative is a bit redundant outside of the main artice, they should be merged and a short summary left on the control flow page with a main article link Adam McCormick 14:39, 14 April of the term, nor even any mention of anything which it is easy to connect lexically. Please correct. Donal Fellows (talk) 15:34, 29 December 2008 (UTC)[reply]

usage of "Continuation"

The "Loop system cross reference table" has a "continuation" column, but from what I can tell, it's not the normal meaning of continuation in computer science; for instance, I'm reasonably sure Java doesn't support continuations, but it's listed as having them in the column. Is "escape continuation" meant instead, or what? --Cybercobra (talk) 03:32, 18 February 2009 (UTC)[reply]