Expression Versus Statement - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T08:59:21Zhttp://stackoverflow.com/feeds/question/19132http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/19132/expression-versus-statement40Expression Versus StatementMichael Wolfenden2008-08-21T00:28:00Z2009-06-23T20:49:57Z
<p>I'm asking with regards to c#, but I assume its the same in most other languages.</p>
<p>Does anyone have a good definition of <em>expressions</em> and <em>statements</em> and what the differences are.</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/19132/expression-versus-statement/19138#191381Answer by Mark Cidade for Expression Versus StatementMark Cidade2008-08-21T00:30:31Z2008-08-21T00:41:03Z<p>Expressions can be evaluated to get a value, whereas statements don't return a value (they're of type <em>void</em>).</p>
<p>Function call expressions can also be considered statements of course, but unless the execution environment has a special built-in variable to hold the returned value, there is no way to retrieve it.</p>
<p>Statement-oriented languages require all procedures to be a list of statements. Expression-oriented languages, which is probably all functional languages, are lists of expressions, or in tha case of LISP, one long S-expression that represents a list of expressions.</p>
<p>Although both types can be composed, most expressions can be composed arbitrarily as long as the types match up. Each type of statement has its own way of composing other statements, if they can do that all. Foreach and if statements require either a single statment or that all subordinate statements go in a statement block, one after another, unless the substatements allow for thier own substatements. </p>
<p>Statements can also include expressions, where an expression doesn't really include any statements. One exception, though, would be a lambda expression, which represents a function, and so can include anything a function can iclude unless the language only allows for limited lambdas, like Python's single-expression lambdas. </p>
<p>In an expression-based language, all you need is a single expression for a function since all control structures return a value (a lot of them return NIL). There's no need for a return statement since the last-evaluated expression in the function is the return value.</p>
http://stackoverflow.com/questions/19132/expression-versus-statement/19139#191396Answer by Patrick for Expression Versus StatementPatrick2008-08-21T00:30:44Z2008-08-21T00:30:44Z<p>An expression is something that returns a value, whereas a statement does not.</p>
<p>For examples:</p>
<pre><code>1 + 2 * 4 * foo.bar() //Expression
foo.voidFunc(1); //Statement
</code></pre>
<p>The Big Deal between the two is that you can chain expressions together, whereas statements cannot be chained.</p>
http://stackoverflow.com/questions/19132/expression-versus-statement/19144#191441Answer by Matthew Schinckel for Expression Versus StatementMatthew Schinckel2008-08-21T00:31:55Z2008-08-21T00:31:55Z<p>Simply: an expression evaluates to a value, a statement doesn't.</p>
http://stackoverflow.com/questions/19132/expression-versus-statement/19150#191503Answer by Mike Stone for Expression Versus StatementMike Stone2008-08-21T00:35:13Z2008-08-21T00:35:13Z<p>You can find this on <a href="http://en.wikipedia.org/wiki/Statement_%28programming%29" rel="nofollow">wikipedia</a>, but expressions are evaluated to some value, while statements have no evaluated value.</p>
<p>Thus, expressions can be used in statements, but not the other way around.</p>
<p>Note that some languages (such as Lisp, and I believe Ruby, and many others) do not differentiate statement vs expression... in such languages, everything is an expression and can be chained with other expressions.</p>
http://stackoverflow.com/questions/19132/expression-versus-statement/19224#19224105Answer by Joel Spolsky for Expression Versus StatementJoel Spolsky2008-08-21T02:17:21Z2008-08-21T02:17:21Z<p><strong>Expression:</strong> Something which evaluates to a value. Example: <em>1+2/x</em><br />
<strong>Statement:</strong> A line of code which does something. Example: <em>GOTO 100</em></p>
<p>The distinction was crystal-clear in the earliest general-purpose programming languages, like FORTRAN. In FORTRAN, a statement was one unit of execution, a thing that you did. The only reason it wasn't called a "line" was because sometimes it spanned multiple lines. An expression on its own couldn't do anything... you had to assign it to a variable.</p>
<blockquote>
<p><code>1 + 2 / X</code></p>
</blockquote>
<p>is an error in FORTRAN, because it doesn't do anything. You had to do something with that expression:</p>
<blockquote>
<p><code>X = 1 + 2 / X</code></p>
</blockquote>
<p>The earliest popular language to blur the lines was C. The designers of C realized that no harm was done if you were allowed to evaluate an expression and throw away the result. In C, every expression could be a statement:</p>
<blockquote>
<p><code>1 + 2 / x;</code></p>
</blockquote>
<p>is a totally legit statement even though absolutely nothing will happen. Why? Because in C, expressions could have <em>side-effects</em> -- they could change something.</p>
<blockquote>
<p><code>1 + 2 / callfunc(12);</code></p>
</blockquote>
<p>because <code>callfunc</code> might just do something useful.</p>
<p>Once you allow any expression to be a statement, you might as well allow the assignment operator (=) inside expressions. That's why C lets you do things like</p>
<blockquote>
<p><code>callfunc(x = 2);</code></p>
</blockquote>
<p>This evaluates the expression x = 2 (assigning the value of 2 to x) and then passes that (the 2) to the function <code>callfunc</code>.</p>
<p>This blurring of expressions and statements occurs in all the C-derivatives (C, C++, C#, and Java), which still have some statements (like <code>while</code>) but which allow any expression to be used as a statement.</p>
<p>Functional languages like Lisp don't have statements. All they have is expressions.</p>
http://stackoverflow.com/questions/19132/expression-versus-statement/19362#193622Answer by Mark Harrison for Expression Versus StatementMark Harrison2008-08-21T05:05:58Z2008-08-21T05:05:58Z<ul>
<li>an expression is anything that yields a value: 2 + 2</li>
<li>a statement is one of the basic "blocks" of program execution.</li>
</ul>
<p>Note that in C, "=" is actually an operator, which does two things:</p>
<ul>
<li>returns the value of the right hand subexpression.</li>
<li>copies the value of the right hand subexpression into the variable on the left hand side.</li>
</ul>
<p>Here's an extract from the ANSI C grammar. You can see that C doesn't have many different kinds of statements... the majority of statements in a program are expression statements, i.e. an expression with a semicolon at the end.</p>
<pre><code>statement
: labeled_statement
| compound_statement
| expression_statement
| selection_statement
| iteration_statement
| jump_statement
;
expression_statement
: ';'
| expression ';'
;
</code></pre>
<p><a href="http://www.lysator.liu.se/c/ANSI-C-grammar-y.html" rel="nofollow">http://www.lysator.liu.se/c/ANSI-C-grammar-y.html</a></p>
http://stackoverflow.com/questions/19132/expression-versus-statement/20771#207718Answer by Scott Wisniewski for Expression Versus StatementScott Wisniewski2008-08-21T18:49:49Z2009-05-25T19:03:33Z<p>I would like to make a small correction to Joel's answer above.</p>
<p>C# does not allow all expressions to be used as statements. In particular, only assignment, call, increment, and decrement expressions may be used as statements. </p>
<p>For example, the C# compiler will flag the following code as a syntax error:</p>
<p>1 + 2;</p>
http://stackoverflow.com/questions/19132/expression-versus-statement/215941#2159410Answer by Dov Wasserman for Expression Versus StatementDov Wasserman2008-10-19T03:10:14Z2008-10-19T03:10:14Z<p>An expression is a noun. A statement is a sentence: a verb acting on one or more nouns.</p>
http://stackoverflow.com/questions/19132/expression-versus-statement/370652#3706522Answer by Eduardo León for Expression Versus StatementEduardo León2008-12-16T07:29:35Z2008-12-16T07:29:35Z<p>Rather than thinking of statements, I think of void expressions, hehe... Oh, I've been drinking too much. :)</p>
http://stackoverflow.com/questions/19132/expression-versus-statement/379882#3798823Answer by tommylommykins for Expression Versus Statementtommylommykins2008-12-19T01:36:29Z2008-12-19T01:36:29Z<p>Some things about expression based languages:</p>
<p><hr /></p>
<p>Most important: Everything returns an value</p>
<p><hr /></p>
<p>There is no difference between curly brackets and braces for delimiting code blocks and expressions, since everything is an expression. This doesn't prevent lexical scoping though: A local variable could be defined for the expression in which its definition is contained and all statements contained within that, for example.</p>
<p><hr /></p>
<p>In an expression based language, everything returns a value. This can be a bit strange at first -- What does <code>(FOR i = 1 TO 10 DO (print i))</code> return? </p>
<p>Some simple examples:</p>
<ul>
<li><code>(1)</code> returns <code>1</code></li>
<li><code>(1 + 1)</code> returns <code>2</code></li>
<li><code>(1 == 1)</code> returns <code>TRUE</code></li>
<li><code>(1 == 2)</code> returns <code>FALSE</code></li>
<li><code>(IF 1 == 1 THEN 10 ELSE 5)</code> returns <code>10</code></li>
<li><code>(IF 1 == 2 THEN 10 ELSE 5)</code> returns <code>5</code></li>
</ul>
<p>A couple more complex examples:</p>
<ul>
<li>Some things, such as some function calls, don't really have a meaningful value to return (Things that only produce side effects?). Calling <code>OpenADoor(), FlushTheToilet()</code> or <code>TwiddleYourThumbs()</code> will return some sort of mundane value, such as OK, Done, or Success.</li>
<li>When multiple unlinked expressions are evaluated within one larger expression, the value of the last thing evaluated in the large expression becomes the value of the large expression. To take the example of <code>(FOR i = 1 TO 10 DO (print i))</code>, the value of the for loop is "10", it causes the <code>(print i)</code> expression to be evaluated 10 times, each time returning i as a string. The final time through returns <code>10</code>, our final answer</li>
</ul>
<p><hr /></p>
<p>It often requires a slight change of mindset to get the most out of an expression based language, since the fact that everything is an expression makes it possible to 'inline' a lot of things</p>
<p>As a quick example:</p>
<blockquote>
<pre><code> FOR i = 1 to (IF MyString == "Hello, World!" THEN 10 ELSE 5) DO
(
LotsOfCode
)
</code></pre>
</blockquote>
<p>is a perfectly valid replacement for the non expression-based</p>
<blockquote>
<pre><code>IF MyString == "Hello, World!" THEN TempVar = 10 ELSE TempVar = 5
FOR i = 1 TO TempVar DO
(
LotsOfCode
)
</code></pre>
</blockquote>
<p>In some cases, the layout that expression-based code permits feels much more natural to me</p>
<p>Of course, this can lead to madness. As part of a hobby project in an expression-based scripting language called MaxScript, I managed to come up with this monster line</p>
<pre><code>IF FindSectionStart "rigidifiers" != 0 THEN FOR i = 1 TO (local rigidifier_array = (FOR i = (local NodeStart = FindsectionStart "rigidifiers" + 1) TO (FindSectionEnd(NodeStart) - 1) collect full_array[i])).count DO
(
LotsOfCode
)
</code></pre>
http://stackoverflow.com/questions/19132/expression-versus-statement/646331#6463310Answer by Earwicker for Expression Versus StatementEarwicker2009-03-14T17:35:38Z2009-03-14T17:35:38Z<p>A statement is a special case of an expression, one with <code>void</code> type. The tendency of languages to treat statements differently often causes problems, and it would be better if they were properly generalized.</p>
<p>For example, in C# we have the very useful <code>Func<T1, T2, T3, TResult></code> overloaded set of generic delegates. But we also have to have a corresponding <code>Action<T1, T2, T3></code> set as well, and general purpose higher-order programming constantly has to be duplicated to deal with this unfortunate bifurcation.</p>
<p>Trivial example - a function that checks whether a reference is null before calling onto another function:</p>
<pre><code>TResult IfNotNull<TValue, TResult>(TValue value, Func<TValue, TResult> func)
where TValue : class
{
return (value == null) ? default(TValue) : func(value);
}
</code></pre>
<p>Could the compiler deal with the possibility of <code>TResult</code> being <code>void</code>? Yes. All it has to do is require that return is followed by an expression that is of type <code>void</code>. The result of <code>default(void)</code> would be of type <code>void</code>, and the func being passed in would need to be of the form <code>Func<TValue, void></code> (which would be equivalent to <code>Action<TValue></code>).</p>
<p>A number of other answers imply that you can't chain statements like you can with expressions, but I'm not sure where this idea comes from. We can think of the <code>;</code> that appears after statements as a binary infix operator, taking two expressions of type <code>void</code> and combining them into a single expression of type <code>void</code>.</p>
http://stackoverflow.com/questions/19132/expression-versus-statement/1035106#10351061Answer by Conal for Expression Versus StatementConal2009-06-23T20:49:57Z2009-06-23T20:49:57Z<p>For an explanation of important differences in composability (chainability) of expressions vs statements, my favorite reference is John Backus's Turing award paper, <em><a href="http://www.stanford.edu/class/cs242/readings/backus.pdf" rel="nofollow">Can programming be liberated from the von Neumann style?</a></em>.</p>
<p>Imperative languages (Fortran, C, Java, ...) emphasize statements for structuring programs, and have expressions as a sort of after-thought. Functional languages emphasize expressions. <em>Purely</em> functional languages have such powerful expressions than statements can be eliminated altogether.</p>