流程控制

Control structures

流程控制

This chapter explores more of ruby’s control structures.

本章节探究了更多的Ruby流程控制。

case

We use the case statement to test a sequence of conditions. This is superficially similar to switch in C and Java but is considerably more powerful, as we shall see.

我们使用case语句来测试一个条件序列。表面上看它与CJAVA中的switch类似,但正如我们将要看到的,实际上它要比switch强大得多。

  1. ruby> i=8
  2. ruby> case i
  3. | when 1, 2..5
  4. | puts "1..5"
  5. | when 6..10
  6. | puts "6..10"
  7. | end
  8. 6..10
  9. nil

2..5 is an expression which means the range between 2 and 5, inclusive. The following expression tests whether the value of i falls within that range:

2..5是一个表达式,它表示2到5的范围(包括2和5)。下面的表达式测试了我的值是否在这个范围内:

  1. (2..5) === i

case internally uses the relationship operator === to check for several conditions at a time.

case在内部使用了关系运算符===来一次检查多个条件。

In keeping with ruby’s object oriented nature, === is interpreted suitably for the object that appeared in the when condition.

为了与Ruby面向对象的特性保持一致,===会对出现在when条件下的对象进行适当解释。

For example, the following code tests string equality in the first when, and regular expression matching in the second when.

举个例子,下面的代码在第1个when中会检测字符串是否相等,在第2个when中会检测字符串是否与正则表达式匹配。

  1. ruby> case 'abcdef'
  2. | when 'aaa', 'bbb'
  3. | puts "aaa or bbb"
  4. | when /def/
  5. | puts "includes /def/"
  6. | end
  7. includes /def/
  8. nil
  9. while

Ruby provides convenient ways to construct loops, although you will find in the next chapter that learning how to use iterators will make it unnecessary to write explicit loops very often.

Ruby提供了非常便捷的方法来构建循环,尽管你将在下一章中发现,学习如何使用迭代器将使编写显式的循环变得不再必要。

A while is a repeated if. We used it in our word-guessing puzzle and in the regular expression programs (see the previous chapter); there, it took the form while condition … end surrounding a block of code to be repeated while condition was true. But while and if can as easily be applied to individual statements:

一个while就是一个重复的if。我们在“猜谜语”和正则表达式中使用了while(参见上一章节)。这里,它以while 条件 … end的形式出现。在条件为真的情况下,重复执行代码块中的代码。但是whileif都可以很容易地应用于单个语句。

  1. ruby> i = 0
  2. 0
  3. ruby> puts "It's zero." if i==0
  4. It's zero.
  5. nil
  6. ruby> puts "It's negative." if i<0
  7. nil
  8. ruby> puts i+=1 while i<3
  9. 1
  10. 2
  11. 3
  12. nil

Sometimes you want to negate a test condition. An unless is a negated if, and an until is a negated while. We’ll leave it up to you to experiment with these.

有时你想要否定一个测试条件,unless就是否定的if,并且until就是否定的while。我们把它留给你来做实验。

There are four ways to interrupt the progress of a loop from inside.

有四种方法可以从内部中断循环的进程。

First, break means, as in C, to escape from the loop entirely.

1break意味着,就像在C中一样,会完全终止循环。

Second, next skips to the beginning of the next iteration of the loop (corresponding to C’s continue).

2next跳到循环的下一次迭代的开始(相当于Ccontinue)。

Third, ruby has redo, which restarts the current iteration.

3.Ruby有redo,这将重新启动当前的迭代。

The following is C code illustrating the meanings of break, next, and redo:

下面用C语言代码说明了breaknext以及redo的含义。

  1. while (condition) {
  2. label_redo:
  3. goto label_next; /* ruby's "next" */
  4. goto label_break; /* ruby's "break" */
  5. goto label_redo; /* ruby's "redo" */
  6. ...
  7. ...
  8. label_next:
  9. }
  10. label_break:
  11. ...

The fourth way to get out of a loop from the inside is return. An evaluation of return causes escape not only from a loop but from the method that contains the loop. If an argument is given, it will be returned from the method call, otherwise nil is returned.

4.从内部退出循环的第4种方法是return。对return的运算不仅会导致终止循环,还会从包含循环的方法中退出,否则将返回nil

for

C programmers will be wondering by now how to make a “for” loop.

C程序员现在可能想知道该如何如何创建一个for循环。

Ruby’s for can serve the same purpose, but adds some flexibility.

Rubyfor可以达到同样的目的,而且还增加了一些灵活性。

The loop below runs once for each element in a collection (array, hash, numeric sequence, etc.), but doesn’t make the programmer think about indices:

下面的循环为集合(数组散列数字序列等等)中的每个元素运行一次,但是并不需要程序员考虑索引

  1. for elt in collection
  2. # ... 此处,elt引用了集合中的每一个元素
  3. end

The collection can be a range of values (this is what most people mean when they talk about a for loop):

这个集合也可以是某个范围内的值(这也是大多数人在谈论for循环时的意思):

  1. ruby> for num in (4..6)
  2. | puts num
  3. | end
  4. 4
  5. 5
  6. 6
  7. 4..6

In this example we step through some array elements:

在这个例子中,我们逐步介绍了一些数组元素

  1. ruby> for elt in [100,-9.6,"pickle"]
  2. | puts "#{elt}\t(#{elt.class})"
  3. | end
  4. 100 (Fixnum)
  5. -9.6 (Float)
  6. pickle (String)
  7. [100, -9.6, "pickle"]

But we’re getting ahead of ourselves. for is really another way of writing each, which, it so happens, is our first example of an iterator. The following two forms are equivalent:

但是我们已经超越了自己。for确实是另一种写each的方法,它是我们第一个迭代器的例子。以下两种形式是等价的:

  1. #如果你曾使用C或JAVA,你可能倾向于这种.
  2. for element in collection
  3. ...
  4. end
  1. #一个Smalltalk程序员可能更钟爱这种
  2. collection.each {|element|
  3. ...
  4. }

Iterators can often be substituted for conventional loops, and once you get used to them, they are generally easier to deal with. So let’s move on and learn more about them.

迭代器通常被用来代替传统的循环,并且一旦你习惯了它们,它们通常更容易处理。因此,让我们继续学习,更多地了解它们。

上一章 再读“简单示例” 下一章 迭代器