Difference between revisions of "Ruby While and Until Loops"

From Techotopia
Jump to: navigation, search
Line 8: Line 8:
  
  
If computers do one thing well it is performing tasks very quickly. One thing computers do even better is performing the same task over and over again until specific criteria are met (or even infinitely if that is what is required). One this that computers are very bad at, however, is doing anything without being told to do it. Given these facts, it should come as no surprise that just about every programming language, Ruby included, provide mechanisms for instructing a computer system to repeat tasks.
+
If computers do one thing well it is performing tasks very quickly. One thing computers do even better is performing the same task over and over again until specific criteria are met (or even infinitely if that is what is required). One thing that computers are very bad at, however, is doing anything without being told to do it. Given these facts, it should come as no surprise that just about every programming language, Ruby included, provide mechanisms for instructing a computer system to repeat tasks.
  
 
In  this chapter of [[Ruby Essentials]] we will look at using ''while'' and ''until'' structures to allow loops to be built into applications. In the next chapter we will look at [[Looping with for and the Ruby Looping Methods|using the for loop and Ruby looping methods]].
 
In  this chapter of [[Ruby Essentials]] we will look at using ''while'' and ''until'' structures to allow loops to be built into applications. In the next chapter we will look at [[Looping with for and the Ruby Looping Methods|using the for loop and Ruby looping methods]].
Line 57: Line 57:
 
== Breaking from While Loops ==
 
== Breaking from While Loops ==
  
It is sometimes necessary to break out of a while loop before the while expression evaluates to true. This can be achieved using the ''break if'' statement:
+
It is sometimes necessary to break out of a while loop before the while expression evaluates to false. This can be achieved using the ''break if'' statement:
  
 
<pre>
 
<pre>
Line 68: Line 68:
 
</pre>
 
</pre>
  
The above loop when now exit when i equals 2, instead of when i reaches 5.
+
The above loop will now exit when i equals 2, instead of when i reaches 5.
  
 
== unless and until ==
 
== unless and until ==

Revision as of 13:05, 1 December 2007

PreviousTable of ContentsNext
The Ruby case StatementLooping with for and the Ruby Looping Methods


If computers do one thing well it is performing tasks very quickly. One thing computers do even better is performing the same task over and over again until specific criteria are met (or even infinitely if that is what is required). One thing that computers are very bad at, however, is doing anything without being told to do it. Given these facts, it should come as no surprise that just about every programming language, Ruby included, provide mechanisms for instructing a computer system to repeat tasks.

In this chapter of Ruby Essentials we will look at using while and until structures to allow loops to be built into applications. In the next chapter we will look at using the for loop and Ruby looping methods.


Contents


The Ruby While Loop

The Ruby while loop is designed to repeat a task until a particular expression is evaluated to be false. The syntax of a while loop is as follows:

while expression do

... ruby code here ...

end


In the above outline, expression is a Ruby expression which must evaluate to true or false. The ruby code here marker is where the code to executed is placed. This code will be repeatedly executed until the expression evaluates to false.

For example, we might want to loop until a variable reaches a particular value:

i = 0
while i < 5 do
   puts i
   i += 1
end

The above code will output the value of i until i is no longer less than 5, resulting in the following output:

0
1
2
3
4

The do in this case is actually optional. The following is perfectly valid:

i = 0
while i < 5
   puts i
   i += 1
end

Breaking from While Loops

It is sometimes necessary to break out of a while loop before the while expression evaluates to false. This can be achieved using the break if statement:

i = 0
while i < 5
   puts i
   i += 1
   break if i == 2
end

The above loop will now exit when i equals 2, instead of when i reaches 5.


unless and until

Ruby's until statement differs from while in that it loops until a true condition is met. For example:

i = 0
until i == 4
   puts i
   i += 1
end

resulting in the following output:

0
1
2
3
4

The until keyword can also be used as a statement modifier, as follows:

puts i += 1 until i == 5

The unless statement provides an alternative mechanism to the if else construct. For example we might write an if else statement as follows:

if i < 10
   puts "Student failed"
else
   puts "Student passed"
end

The unless construct inverts this:

unless i >= 10
    puts "Student failed"
else
    puts "Student passed"
end

Summary

In this chapter of Ruby Essentials we have looked in detail at creating loops that depend on specific criteria. This essentially involved the use of while and until statements. In the next chapter we will look at Looping with for and the Ruby Looping Methods.



PreviousTable of ContentsNext
The Ruby case StatementLooping with for and the Ruby Looping Methods