- Lazy evaluation
In
computer programming , lazy evaluation (or delayed evaluation) is the technique of delaying a computation until such time as the result of the computation is known to be needed.The actions of lazy evaluation include: performance increases due to avoiding unnecessary calculations, avoiding error conditions in the evaluation of compound expressions, the ability to construct infinite
data structure s, and the ability to definecontrol structure s as regular functions rather than built-in primitives.Languages that use lazy actions can be further subdivided into those that use a call-by-name
evaluation strategy and those that use call-by-need. Most realistic lazy languages, such as Haskell, use call-by-need for performance reasons, but theoretical presentations of lazy evaluation often use call-by-name for simplicity.The opposite of lazy actions is
eager evaluation , also known as "strict evaluation". Eager evaluation is the evaluation behavior used in mostprogramming languages .Delayed evaluation
Delayed evaluation is used particularly in functional languages. When using delayed evaluation, an expression is not evaluated as soon as it gets bound to a variable, but when the evaluator is forced to produce the expression's value. That is, a statement such as
x:=expression;
(i.e. the assignment of the result of an expression to a variable) clearly calls for the expression to be evaluated and the result placed inx
, but what actually is inx
is irrelevant until there is a need for its value via a reference tox
in some later expression whose evaluation could itself be deferred, though eventually the rapidly-growing tree of dependencies would be pruned in order to produce some symbol rather than another for the outside world to see.Some programming languages delay evaluation of expressions by default, and some others provide functions or special syntax to delay evaluation. In Miranda and Haskell, evaluation of function arguments is delayed by default. In many other languages, evaluation can be delayed by explicitly suspending the computation using special syntax (as with Scheme's "
delay
" and "force
" andOCaml 's "lazy
" and "Lazy.force
") or, more generally, by wrapping the expression in athunk . The object representing such an explicitly delayed evaluation is called a future or promise.Delayed evaluation has the advantage of being able to create calculable infinite lists without infinite loops or size matters interfering in computation. For example, one could create a function that creates an infinite list (often called a "stream") of
Fibonacci number s. The calculation of the "n"-th Fibonacci number would be merely the extraction of that element from the infinite list, forcing the evaluation of only the first n members of the list.For example, in Haskell, the list of all Fibonacci numbers can be written as
fibs = 0 : 1 : zipWith (+) fibs (tail fibs)
In Haskell syntax, "
:
" prepends an element to a list,tail
returns a list without its first element, andzipWith
uses a specified function (in this case addition) to combine corresponding elements of two lists to produce a third.Provided the programmer is careful, only the values that are required to produce a particular result are evaluated. However, certain calculations may result in the program attempting to evaluate an infinite number of elements; for example, requesting the length of the list or trying to sum the elements of the list with a fold operation would result in the program either failing to terminate or running out of memory.
Control structures
Lazy evaluation allows control structures to be defined normally, and not as primitives or compile-time techniques. This is because if one wished to write an if-then-else construct:
if' a b c
then in an eagerly evaluated language, both
a = b
otherwise = cb
andc
would be evaluated fully; as these might be infinite or have side effects or any number of things, a good if-then-else construct could not be defined. If the function is lazily evaluated, thena
would be evaluated and then onlyb
orc
, but not both — which is the desired behavior. As most programming languages are Turing-complete, it is of course possible to have lazy control structures in eager languages, either as built-ins like C'sternary operator ?: or by other techniques such as clever use of lambdas, or macros.Other uses
In computer
windowing system s, the painting of information to the screen is driven by "expose events" which drive the display code at the last possible moment. By doing this, they avoid the computation of unnecessary display content.Another example of laziness in modern computer systems is
copy-on-write page allocation ordemand paging , where memory is allocated only when a value stored in that memory is changed.Laziness can be useful for high performance scenarios. An example is the Unix
mmap functionality. mmap provides "demand driven" loading of pages from disk, so thatonly those pages actually touched are loaded into memory, and unnecessary memory is not allocated.ee also
*
Combinatory logic
*Currying
*Dataflow
*Eager evaluation
*Functional programming
*Graph reduction
*Lambda calculus
*Lazy initialization
*Lookahead
*Minimal evaluation
*Non-strict programming language
*Normal order evaluationExternal links
* [http://gnosis.cx/publish/programming/charming_python_b13.html Functional programming in Python becomes lazy]
* [http://www.digitalmars.com/d/lazy-evaluation.html Lazy function argument evaluation] in the D programming language
* [http://nemerle.org/Lazy_evaluation Lazy evaluation macros] inNemerle
* [http://www-128.ibm.com/developerworks/linux/library/l-lazyprog.html Lazy programming and lazy evaluation] in Scheme
* [http://www.iolanguage.com/docs/talks/2005-10-OOPSLA/p003-dekorte.pdf Lazy argument evaluation] in Io programming language
* [http://groups.google.com/group/comp.lang.c/browse_thread/thread/22211d03c3e0b5c9/f11f83cdbde4eee8 Lazy evaluation list/set processing] in C programming language
Wikimedia Foundation. 2010.