In 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 (;) to turn the expression into an expression
statement. This asks the implementation to evaluate the expression for its side-effects only and to disregard the result of the expression (e.g. ) unless it is a part of an expression statement that induces side-effects (e.g. or ).
Caveats The 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 also==