Ruby - 块


您已经了解了 Ruby 如何定义方法,您可以在其中放置许多语句,然后调用该方法。同样,Ruby 有一个 Block 的概念。

  • 块由代码块组成。

  • 您为块指定一个名称。

  • 块中的代码始终用大括号 ({}) 括起来。

  • 块总是从与该块同名的函数中调用。这意味着,如果您有一个名为test的块,那么您可以使用函数test来调用该块。

  • 您可以使用yield语句调用块。

句法

block_name {
   statement1
   statement2
   ..........
}

在这里,您将学习使用简单的yield语句来调用块。您还将学习如何使用带有参数的yield语句来调用块。您将使用两种类型的yield语句检查示例代码。

收益率声明

让我们看一下yield 语句的示例 -

#!/usr/bin/ruby

def test
   puts "You are in the method"
   yield
   puts "You are again back to the method"
   yield
end
test {puts "You are in the block"}

这将产生以下结果 -

You are in the method
You are in the block
You are again back to the method
You are in the block

您还可以使用yield 语句传递参数。这是一个例子 -

#!/usr/bin/ruby

def test
   yield 5
   puts "You are in the method test"
   yield 100
end
test {|i| puts "You are in the block #{i}"}

这将产生以下结果 -

You are in the block 5
You are in the method test
You are in the block 100

这里,yield语句后面是参数。您甚至可以传递多个参数。在该块中,您可以在两条垂直线 (||) 之间放置一个变量来接受参数。因此,在前面的代码中,yield 5 语句将值 5 作为参数传递给测试块。

现在,看看下面的语句 -

test {|i| puts "You are in the block #{i}"}

这里,值 5 被接收到变量i中。现在,观察以下put语句 -

puts "You are in the block #{i}"

这个put语句的输出是 -

You are in the block 5

如果你想传递多个参数,那么yield语句就变成 -

yield a, b

块是 -

test {|a, b| statement}

参数将用逗号分隔。

块和方法

您已经了解了块和方法如何相互关联。通常,您可以通过使用与该块同名的方法中的yield 语句来调用该块。因此,你写 -

#!/usr/bin/ruby

def test
   yield
end
test{ puts "Hello world"}

此示例是实现块的最简单方法。您可以使用yield语句调用测试块。

但是,如果方法的最后一个参数前面有 &,那么您可以将一个块传递给该方法,并且该块将被分配给最后一个参数。如果 * 和 & 都出现在参数列表中,则 & 应该稍后出现。

#!/usr/bin/ruby

def test(&block)
   block.call
end
test { puts "Hello World!"}

这将产生以下结果 -

Hello World!

BEGIN 和 END 块

每个 Ruby 源文件都可以声明在文件加载时(BEGIN 块)和程序完成执行后(END 块)运行的代码块。

#!/usr/bin/ruby

BEGIN { 
   # BEGIN block code 
   puts "BEGIN code block"
} 

END { 
   # END block code 
   puts "END code block"
}
   # MAIN block code 
puts "MAIN code block"

一个程序可以包含多个 BEGIN 和 END 块。BEGIN 块按照遇到的顺序执行。END 块以相反的顺序执行。执行时,上述程序产生以下结果 -

BEGIN code block
MAIN code block
END code block