Expression (computer science)In computer science, an expression is a syntactic notation in a programming language that may be evaluated to determine its value of a specific semantic type.[1][2] It is a combination of one or more numbers, constants, variables, functions, and operators that the programming language interprets (according to its particular rules of precedence and of association) and computes to produce ("to return", in a stateful environment) another value. In simple settings, the resulting value is usually one of various primitive types, such as string, boolean, or numerical (such as integer, floating-point, or complex). Expressions are often contrasted with statements—syntactic entities that have no value (an instruction). DefinitionLike in mathematics, an expression is used to denote a value to be evaluated for a specific value type accepted syntactically by a object language. In some cases an expression can't be fully evaluated; in this cases, the value is undefined, even though the calculation was effected and finished.[1]: 26 The process of evaluating an expression is called evaluation; it can occur in different contexts, such as definition and initialization [needs independent confirmation]. Unlike initialization, evaluation is not restricted to the first occurrence. Examples
CYou can see how the parts of the code can be an expression. int main(void) {
int y = 10; // The expression "y = 10";
int x = 40; // The expression "x = 40";
int result = x + y; // The expression "result = x + y" is evaluated;
return 0; // When a function is called, its return expression is evaluated and the call expression yields that value to the caller.
}
In C (and many others programming languages), the "=" is consider operator like in mathematics; more specifically, a binary operator. Void as a result typeIn C and most C-derived languages, a call to a function with a void return type is a valid expression, of type void.[5] Values of type void cannot be used, so the value of such an expression is always thrown away. Side effects and eliminationIn many programming languages, a function, and hence an expression containing a function, may have side effects. An expression with side effects does not normally have the property of referential transparency. In many languages (e.g. C++), expressions may be ended with a semicolon ( CaveatsThe formal notion of a side effect is a change to the abstract state of the running program. Another class of side effects are changes to the concrete state of the computational system, such as loading data into cache memories. Languages that are often described as "side effect–free" will generally still have concrete side effects that can be exploited, for example, in side-channel attacks. Furthermore, the elapsed time evaluating an expression (even one with no other apparent side effects), is sometimes essential to the correct operation of a system, as behaviour in time is easily visible from outside the evaluation environment by other parts of the system with which it interacts, and might even be regarded as the primary effect such as when performing benchmark testing. It depends on the particular programming language specification whether an expression with no abstract side effects can legally be eliminated from the execution path by the processing environment in which the expression is evaluated. See alsoReferences
External links
|