Talk:Conditional (computer programming)

Page contents not supported in other languages.
From Wikipedia, the free encyclopedia

Binary[edit]

It would be great if this article mentioned, briefly, how this is done in binary. Nothing major, but I think a small discussion about operators and how the AND, NOT, and OR operators work to evaluate and If...Then statement. Sir Isaac Lime 16:36, 19 July 2006 (UTC)[reply]

If statements in Wiki markup language.[edit]

This page should also include examples of IF statements in the Wiki markup language. Robert Elliott 07:09, 28 January 2007 (UTC)[reply]

That would be self reference, which would violate NPOV. If we did that, we'd have to include statements in all languages. A dab link could however be used to direct the reader to a page in the WP: namespace. Richard001 20:17, 3 February 2007 (UTC)[reply]
It should at least containa link to how to do IF-ELSE statements in Wiki markup language, for people who are desperately seeking the information and thought that the best known WIKI might be able to help. Cry. —Preceding unsigned comment added by 142.179.253.216 (talk) 00:07, 26 August 2008 (UTC)[reply]

Ada elsif and the dangling-else problem[edit]

The article mentions else-if constructs without covering the dangling-else problem, even though C/C++ is shown in examples & the cross reference and it can occur in those languages. Also, in section Conditional_statement#Else_If_parts the assertion is made that elseif, in Ada, is simply syntactic sugar for else followed by if, which is incorrect. A brief description of the the dangling-else problem and how the Ada syntax avoids it can be found here. Does anyone object to adding material on dangling-else and correcting the assertion on Ada syntax? Tslavens 23:13, 3 July 2007 (UTC)[reply]

There already is an entire article on Dangling else; this article should definitely either link to it, or perhaps a merge may make sense. As for as the Ada example goes, the 'elseif' is in fact just syntactic sugar, but not as its described; the description needs fixed. Also note that other languages, like Python, have an 'elif' which is needed because of the lack of curly-braces or other means to delimit a sequence-of-statements, but it certainly does not suffer from a dangling-else problem....so there may be different motivations for an else-if than just the Ada case. - Dmeranda 15:23, 5 July 2007 (UTC)[reply]

Lisp cond in its own right, or as type of ifelse?[edit]

How about mentioning Lisp's "cond" form, either as a type of conditional statement in its own right, or as an if-then-ifelse- sequence bundled up into a single form? TheHouseOnTheHill (talk) 14:55, 2 October 2008 (UTC)[reply]

It just occurred to me independently that this is a very grave omission. It isn't a special case of if else, but rather a progenitor of the later form. It was described in 1959 by McCarthy in AI Memo 8, "Recursive Functions of Symbolic Expressions and their Computation by Machine.", though McCarthy used formal mathematical notation rather than the S-expressions that later became associated with Lisp.[1]
Let p₁,p₂,...,pk be expressions representing propositions and let e₁,...,ek be arbitrary expressions. The expression [p₁⎯⟶e₁,...pk⎯⟶ek] is called a conditional expression and its value is determined from the values assigned to the variables occuring in it as follows: If the value of p₁ is not defined neither is that of the conditional expression. If p₁ is defined and true the value of the conditional expression is that of e₁ if the latter is defined and otherwise is undefined. If p₁ is defined and false, then the value of [p₁⎯⟶e₁,...,pk⎯⟶ek] is that of [p₂⎯⟶e₂,...pk⎯⟶ek]. Finally if pk is false the value of [pk⎯⟶ek] is undefined.
Not bad for the 1950s! --TS 03:15, 28 April 2010 (UTC)[reply]

missing links[edit]


Should VHDL be included? 64.134.144.237 (talk) 18:25, 6 September 2012 (UTC)[reply]

Guard vs. conditional[edit]

Is there a good reason to discuss Guard (computing) separately from Conditional (programming)? --Abdull (talk) 13:23, 5 October 2010 (UTC)[reply]

I certainly agree that it should be discussed in this article. However, I think the guard article is substantial enough to remain a distinct article, so the same technique as with pattern matching could be used - write a short section here, with a main article link to the Guard article.--greenrd (talk) 20:58, 5 October 2010 (UTC)[reply]

This page is only part of Control flow, no reason to duplicate every paragraph to separate page IMO.

Current content of the Conditional (computer programming) is 70% duplication of Control flow.


For example, we don't have Restart loop (it was covered at Control_flow#Restart_loop) because it is trivial. Ushkin N (talk) 04:55, 22 May 2016 (UTC)[reply]

If-statement or if-statement[edit]

"If-statement" or "if statement"? The article uses both. It seems to me that it should be the latter. https://en.wikipedia.org/wiki/Wikipedia:Manual_of_Style#Hyphens — Preceding unsigned comment added by Arvidj (talkcontribs) 12:18, 6 December 2017 (UTC)[reply]

Proposed merge with Branch (computer science)[edit]

A branch is just a low level instruction representation of a conditional. A branch is a jump based on the status register, the state of the status register is set by evaluating a condition. Ethanpet113 (talk) 06:32, 18 November 2018 (UTC)[reply]

A conditional is a language-specific expression that may or may not cause branching. Branching is the process by which a conditional expression -- when evaluated and deemed in need of a switch to an alternative instruction stream -- is implemented in hardware. Branching can also be unconditional, which involves the same hardware mechanism but has nothing to do with conditionals. This article is all about the conditional expressions, whereas branch is primarily concerned with the hardware mechanism behind unconditional and conditional branching. IMO, this seems like a reasonable way to address two distinct topics. Lambtron talk 16:48, 18 November 2018 (UTC)[reply]
There is one place where I found it tempting to draw an explicit connection between these two topics, and that's when it is mentioned some programming languages can only do conditional GOTOs, which is isomorphic to a conditional branch instruction, with line numbers instead of (instruction) memory addresses. Intellec7 (talk) 08:18, 19 April 2020 (UTC)[reply]

Conditional loops[edit]

I'm not sure articles should be merged, but they should at least mention each other.

https://en.wikipedia.org/wiki/Conditional_loop — Preceding unsigned comment added by 89.20.8.187 (talk) 01:50, 7 May 2020 (UTC)[reply]

What is conditional statement?[edit]

The article says that "the combination of this expression, the If and Then surrounding it, and the consequent that follows afterward constitute a conditional statement". But hey, aren't If and Else (that is, just two words) conditional statements on their own? — Preceding unsigned comment added by 178.71.129.19 (talk) 17:07, 9 May 2020 (UTC)[reply]

Why are we putting "no" for switch statements for python?[edit]

The pattern matching abilities in Python 3.10 can be used syntactically and functionally as switch statements. "switch–select–case" and "Pattern matching" should probably be "yes". SwampMaster2160 (talk) 20:13, 10 March 2022 (UTC)[reply]

History - the cond expression in McCarthy's Lisp[edit]

I have recently read (here) that John McCarthy invented conditionals in his development of Lisp. This sounds reasonable to me, given what I know of the history of programming languages, but I came here hoping to find some source for this. Presently, this article doesn't have a history section, however, there is a sub-section for the history of if-then statements which has no citations, is vague, and implies that conditionals weren't invented until the 1980s. I think this page would be improved with a more comprehensive History section (with citations of course). I don't feel particularly qualified to write such a section, though I think McCarthy's cond should be mentioned (I noticed that the See Also section links to McCarthy Formalism.) and this would be a good place to include the distinction between conditionals and Branching. For now, I'll just add a citation needed, but maybe I'll start the section if no one else does. Shawsa7 (talk) 20:39, 11 January 2023 (UTC)[reply]

Arithmetic IF (pre Fortran 90) — choice of words[edit]

It says (in the section about the now obsolete three-way arithmetic IF) "In practice it has been observed that most arithmetic IF statements referenced the following statement with one or two of the labels."

Wouldn't that have been inevitable, since there would have been no other way to reach that part of the code? IMO, this points toward a design flaw in this construct (No fall-through) that programmers must have been aware of. If so, this means that "In practice it has been observed …" does not reflect this state of affairs. 2A02:A440:948D:1:786C:C600:E3CC:B643 (talk) 22:20, 31 October 2023 (UTC)[reply]