Loop

Why Trust Techopedia

What Does Loop Mean?

A loop is a programming function that iterates a statement or condition based on specified boundaries.

Advertisements

The loop function uses almost identical logic and syntax in all programming languages. Thus, a specific statement or a group of instructions is continuously executed until a specific loop body or boundary condition is reached. The result of the entire loop body’s first operation cycle serves as the next repetition’s starting point.

Techopedia Explains Loop

A loop repeatedly executes code in its body until the loop conditional statement becomes false.

A loop is divided into two parts:

  • Loop Statement: This defines the time limit to be true for the continuous loop that is contingent on the attached conditional statement.
  • Loop Body: This holds the statement’s code or instruction; it is is executed with each loop cycle.

Here is an example of a loop (a for loop) in C#:

int i; 
string numbers = ""; 
for (i = 1; i <= 9; i++) 
 numbers += i.ToString(); 
Console.WriteLine(numbers);

The output of the example is: “123456789.”

Advertisements

Related Terms

Margaret Rouse
Editor

Margaret jest nagradzaną technical writerką, nauczycielką i wykładowczynią. Jest znana z tego, że potrafi w prostych słowach pzybliżyć złożone pojęcia techniczne słuchaczom ze świata biznesu. Od dwudziestu lat jej definicje pojęć z dziedziny IT są publikowane przez Que w encyklopedii terminów technologicznych, a także cytowane w artykułach ukazujących się w New York Times, w magazynie Time, USA Today, ZDNet, a także w magazynach PC i Discovery. Margaret dołączyła do zespołu Techopedii w roku 2011. Margaret lubi pomagać znaleźć wspólny język specjalistom ze świata biznesu i IT. W swojej pracy, jak sama mówi, buduje mosty między tymi dwiema domenami, w ten…