(computer science) A sequence of instructions in a computer program that is repeated over and over without end, due to a mistake in the programming.
Did you mean: Infinite loop (technology), Infinite Loop (street), Infinite Loop (book), Loop space
| Sci-Tech Dictionary: endless loop |
(computer science) A sequence of instructions in a computer program that is repeated over and over without end, due to a mistake in the programming.
| 5min Related Video: infinite loop |
| Computer Desktop Encyclopedia: infinite loop |
A series of instructions that are constantly repeated. Also called an "endless loop," it can be caused by an error in the program or be intentional, such as demo on screen that keeps repeating.
To imply the never-ending creation of products, Apple headquarters is located at 1 Infinite Loop, Cupertino, CA 95014.
Download Computer Desktop Encyclopedia to your iPhone/iTouch
| Hacker Slang: infinite loop |
| Wikipedia: Infinite loop |
An infinite loop is a sequence of instructions in a computer program which loops endlessly, either due to the loop having no terminating condition, having one that can never be met, or one that causes the loop to start over. In older operating systems with cooperative multitasking, infinite loops normally caused the entire system to become unresponsive. With the now-prevalent preemptive multitasking model, infinite loops usually cause the program to consume all available processor time, but can usually be terminated by the user. Busy-wait loops are also sometimes misleadingly called "infinite loops". One possible cause of a computer "freezing" is an infinite loop; others include deadlock and access violations.
Like other terms with specific meaning to programmers and an evocative feel (for example memory leak), the term is sometimes used incorrectly; see colloquial use below. An actual infinite loop is something that can generally only be diagnosed by a programmer.
Contents |
Looping is repeating a set of instructions until a specific condition is met. An infinite loop occurs when the condition will never be met, due to some inherent characteristic of the loop. There are a few situations when this is desired behavior. For example, the games on cartridge-based game consoles typically have no exit condition in their main loop, as there is no operating system for the program to exit to; the loop runs until console is powered off. Most often, the term is used for those situations when this is not the intended result; that is, when this is a bug. Such errors are most common among novice programmers, but can be made by experienced programmers as well, and their causes can be quite subtle.
Here is one example of an infinite loop in pseudocode:
REPEAT x := 1; x := x + 1; UNTIL x > 5
This creates a situation where x will never be greater than 5, since at the start of the loop code x is given the value of 1, thus, the loop will always end in 2 and the loop will never break. This could be fixed by moving the SET x to 1 instruction outside the REPEAT loop.
A simple example of an infinite loop is instructing a computer to keep on adding 0 to 1 until 2 is reached. This will never happen.
One common cause, for example, is that the programmer intends to iterate over a collection of items such as a linked list, executing the loop code once for each item. Improperly formed links can create a reference loop in the list, causing the code to continue forever because the program never reaches the end of the list.
A simple example in BASIC:
DO LOOP UNTIL 0
Here the loop is quite obvious, as the last line unconditionally sends execution back to the first. Unexpected behavior in evaluating the terminating condition can also cause this problem. Here is an example (in C):
float x = 0.1; while (x != 1.1) { printf("x = %f\n", x); x = x + 0.1; }
On some systems, this loop will execute ten times as expected, but on other systems it will never terminate. The problem is that the loop terminating condition (x != 1.1) tests for exact equality of two floating point values, and the way floating point values are represented in many computers will make this test fail, because they cannot represent the value 1.1 exactly.
Because of the likelihood of tests for equality or not-equality failing unexpectedly, it is safer to use greater-than or less-than tests when dealing with floating-point values. For example, instead of testing whether x equals 1.1, one might test whether (x <= 1.0), or (x < 1.1), either of which would be certain to exit after a finite number of iterations. Another way to fix this particular example would be to use an integer as a loop index, counting the number of iterations that have been performed.
A similar problem occurs frequently in numerical analysis: in order to compute a certain result, an iteration is intended to be carried out until the error is smaller than a chosen tolerance. However, because of rounding errors during the iteration, the specified tolerance can never be reached, resulting in an infinite loop.
The simplest example (in C++):
for(;;) { cout<<"Infinite Loop\n"; }
This is a loop that will forever print "Infinite Loop."
While most infinite loops can be found by close inspection of the code, there is no general method to determine whether a given program will ever halt or will run forever; this is the undecidability of the halting problem.
Although infinite loops in a single program are usually easy to predict, a loop caused by interaction of several entities is much harder to foresee. Consider a server that always replies with an error message if it does not understand the request. Apparently, there is no possibility for an infinite loop in the server, but if there are two such servers (A and B), and A receives a message of unknown type from B, then A replies with an error message to B, B does not understand the error message and replies to A with its own error message, A does not understand the error message from B and sends yet another error message, and so on ad infinitum. One common example of such situation is an e-mail loop.
A pseudo-infinite loop is a loop that appears infinite but is really just a very long loop.
unsigned int i; for (i = 1; i > 0; i++) { /* loop code */ }
It appears that this will go on forever, but in fact the value of i will eventually reach the maximum value storable in an unsigned int and adding 1 to that number will wrap-around to 0, breaking the loop. The actual limit of i depends on the details of the system and compiler used. With arbitrary-precision arithmetic, this loop would continue until the computer's memory could no longer contain i.
Infinite recursion, a special case of an infinite loop that is caused by recursion. The most trivial example of this is the term Ω in the lambda calculus, shown below in Scheme:
(define Ω (let ([ω (lambda (f) (f f))]) (ω ω)))
Ω is an infinite recursion, and therefore has no normal form. When using structural recursion, infinite recursions are usually caused by a missing base case or by a faulty inductive step. An example of such a faulty structural recursion:
(define (sum-from-1-to n) (+ n (sum-from-1-to (sub1 n))))
The function sum-from-1-to will run out of stack space, as the recursion never stops — it is infinite. To correct the problem, a base case is added.
(define (sum-from-1-to' n) (cond [(= n 1) 1] [else (+ n (sum-from-1-to' (sub1 n)))]))
This revised function will only run out of stack space if n is less than 1 or n is too large; error checking would remove the first case. For information on recursive functions which never run out of stack space, see tail recursion.
An Alderson loop is a slang or jargon term for a special version of an infinite loop where there is an exit condition available, but inaccessible in the current implementation of the code, typically due to programmer error. These are most common and visible while debugging user interface code. An example would be if there is a menu stating, “Select 1-3 or 9 to quit” and 9 is not allowed by the function that takes the selection from the user. It is generally considered a common type of software bug. The term allegedly received its name from a programmer who had coded a modal message box in Microsoft Access without either an OK or Cancel button, thereby disabling the entire program whenever the box came up.[1]
A tight loop is a loop with few instructions in the body that's executed many times (they are prime candidates for optimization). Infinite loops are often tight, but a tight loop is rarely infinite.
Like some other programming terms (for example memory leak) the term infinite loop may be attractive to non-programmers and may be used to describe situations other than programming errors. For example, any computing situation which involves a series of steps and ends up at the starting point, especially if there does not seem to be any way to escape or achieve the desired objective.[2] It may also be used by some to refer to voluntarily setting up anything that repeats.[3]
The canonical shampoo instruction Lather. Rinse. Repeat. is a simple example of an infinite loop.
This entry is from Wikipedia, the leading user-contributed encyclopedia. It may not have been reviewed by professional editors (see full disclaimer)
Did you mean: Infinite loop (technology), Infinite Loop (street), Infinite Loop (book), Loop space
| wound around the axle (computer jargon) | |
| closed loop (technology) | |
| loop back (technology) |
| What is the infinite pseodocode loop of a clock? | |
| How do you fix Infinite loop error? | |
| What is the reason for infinite Infinite open loop gain of op-amp? |
Copyrights:
![]() | Sci-Tech Dictionary. McGraw-Hill Dictionary of Scientific and Technical Terms. Copyright © 2003, 1994, 1989, 1984, 1978, 1976, 1974 by McGraw-Hill Companies, Inc. All rights reserved. Read more | |
![]() | Computer Desktop Encyclopedia. THIS COPYRIGHTED DEFINITION IS FOR PERSONAL USE ONLY. All other reproduction is strictly prohibited without permission from the publisher. © 1981-2009 Computer Language Company Inc. All rights reserved. Read more | |
![]() | Hacker Slang. The Jargon File. Copyright © 2007. Read more | |
![]() | Wikipedia. This article is licensed under the Creative Commons Attribution/Share-Alike License. It uses material from the Wikipedia article "Infinite loop". Read more |
Mentioned in