I'm asking with regards to c#, but I assume its the same in most other languages.
Does anyone have a good definition of expressions and statements and what the differences are?
|
I'm asking with regards to c#, but I assume its the same in most other languages. Does anyone have a good definition of expressions and statements and what the differences are? |
|||||||||||||
|
|
Expression: Something which evaluates to a value. Example: 1+2/x In the earliest general-purpose programming languages, like FORTRAN, the distinction was crystal-clear. 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.
is an error in FORTRAN, because it doesn't do anything. You had to do something with that expression:
FORTRAN didn't have a grammar as we know it today—that idea was invented, along with Backus-Naur Form (BNF), as part of the definition of Algol-60. At that point the semantic distinction ("have a value" versus "do something") was enshrined in syntax: one kind of phrase was an expression, and another was a statement, and the parser could tell them apart. Designers of later languages blurred the distinction: they allowed syntactic expressions to do things, and they allowed syntactic statements that had values. The earliest popular language example that still survives is 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 syntactic expression can be a made into a statement just by tacking a semicolon along the end:
is a totally legit statement even though absolutely nothing will happen. Similarly, in C, an expression can have side-effects—it can change something.
because 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
This evaluates the expression x = 2 (assigning the value of 2 to x) and then passes that (the 2) to the function This blurring of expressions and statements occurs in all the C-derivatives (C, C++, C#, and Java), which still have some statements (like Having two "syntactic categories" (which is the technical name for the sort of thing statements and expressions are) can lead to duplication of effort. For example, C has two forms of conditional, the statement form
and the expression form
And sometimes people want duplication that isn't there: in standard C, for example, only a statement can declare a new local variable—but this ability is useful enough that the GNU C compiler provides a GNU extension that enables an expression to declare a local variable as well. Designers of other languages didn't like this kind of duplication, and they saw early on that if expressions can have side effects as well as values, then the syntactic distinction between statements and expressions is not all that useful—so they got rid of it. Haskell, Icon, Lisp, and ML are all languages that don't have syntactic statements—they only have expressions. Even the class structured looping and conditional forms are considered expressions, and they have values—but not very interesting ones. |
|||||||||||||||||
|
|
I would like to make a small correction to Joel's answer above. 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. For example, the C# compiler will flag the following code as a syntax error: 1 + 2; |
|||||
|
Note that in C, "=" is actually an operator, which does two things:
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.
|
|||||
|
|
Rather than thinking of statements, I think of void expressions, hehe... Oh, I've been drinking too much. :) |
|||
|
|
|
An expression is something that returns a value, whereas a statement does not. For examples:
The Big Deal between the two is that you can chain expressions together, whereas statements cannot be chained. |
|||||||||||
|
|
You can find this on wikipedia, but expressions are evaluated to some value, while statements have no evaluated value. Thus, expressions can be used in statements, but not the other way around. 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. |
|||
|
|
|
For an explanation of important differences in composability (chainability) of expressions vs statements, my favorite reference is John Backus's Turing award paper, Can programming be liberated from the von Neumann style?. Imperative languages (Fortran, C, Java, ...) emphasize statements for structuring programs, and have expressions as a sort of after-thought. Functional languages emphasize expressions. Purely functional languages have such powerful expressions than statements can be eliminated altogether. |
|||||||
|
|
Expressions can be evaluated to get a value, whereas statements don't return a value (they're of type void). 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. 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. 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. 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. 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. |
|||||||||||||||||
|
|
Some things about expression based languages: Most important: Everything returns an value 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. In an expression based language, everything returns a value. This can be a bit strange at first -- What does Some simple examples:
A couple more complex examples:
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 As a quick example:
is a perfectly valid replacement for the non expression-based
In some cases, the layout that expression-based code permits feels much more natural to me 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
|
|||
|
|
|
Simply: an expression evaluates to a value, a statement doesn't. |
|||||||||
|
|
A statement is a special case of an expression, one with For example, in C# we have the very useful Trivial example - a function that checks whether a reference is null before calling onto another function:
Could the compiler deal with the possibility of 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 |
|||
|
|
|
Statements are grammatically complete sentences. Expressions are not. For example
reads as "x gets 5." This is a complete sentence. The code
reads, "x plus 5 all divided by 9.0." This is not a complete sentence. The statement
is a complete sentence. Notice that the loop header is not; "while k < 10," is a subordinating clause. |
|||||
|
|
Statements -> Instructions to follow sequentially Statements are basically like steps, or instructions in an algorithm, the result of the execution of a statement is the actualization of the instruction pointer (so-called in assembler) Expressions do not imply and execution order at first sight, their purpose is to evaluate and return a value. In the imperative programming languages the evaluation of an expression has an order, but it is just because of the imperative model, but it is not their essence. Examples of Statements:
(all of them imply the advance of the line (statement) of execution to another line) Example of expressions:
(it doesn't imply the idea of execution, but of the evaluation) |
|||
|
|
|
A statement is a procedural building-block from which all C# programs are constructed. A statement can declare a local variable or constant, call a method, create an object, or assign a value to a variable, property, or field. A series of statements surrounded by curly braces form a block of code. A method body is one example of a code block.
Statements in C# often contain expressions. An expression in C# is a fragment of code containing a literal value, a simple name, or an operator and its operands. An expression is a fragment of code that can be evaluated to a single value, object, method, or namespace. The two simplest types of expressions are literals and simple names. A literal is a constant value that has no name.
Both i and s are simple names identifying local variables. When those variables are used in an expression, the value of the variable is retrieved and used for the expression. |
|||
|
|
|
I prefer the meaning of I guess there will always be confusion in the computing world and science in general when new terminology or words are introduced, existing words are 'repurposed' or users are ignorant of the existing, established or 'proper' terminology for what they are describing |
|||
|
|
|
Most precisely, a statement must have a "side-effect" (i.e. be imperative) and an expression must have a value type (i.e. not the bottom type). The type of a statement is the unit type, but due to Halting theorem unit is fiction so lets say the bottom type.
|
|||||||||||||||||||||
|