Ruby Blocks Can Be Closures (from programming ruby)

Source: Internet
Author: User
Let's get back to our jukebox for a moment (remember the jukebox ?). At some point
We'll be working on the code that handles the user interface-the buttons that people
Press to select songs and control the jukebox. We'll need to associate actions
Those buttons: press START and the music starts. It turns out that Ruby's blocks are
A convenient way to do this. Let's start by assuming that the people who made
Hardware implemented a Ruby extension that gives us a basic button class. (We talk
About extending Ruby beginning on page 261.) 1start_button = Button. new ("Start ")
2pause_button = Button. new ("Pause ")
3 #
4

What happens when the user presses one of our buttons? In the Button class, the hardware
Folks rigged things so that a callback method, button_pressed, will be invoked.
The obvious way of adding functionality to these buttons is to create subclasses
Button and have each subclass implement its own button_pressed method. 1 class StartButton <Button
2def initialize
3 super ("Start") # invoke Button's initialize
4end
5def button_pressed
6 # do start actions
7end
8end
9start_button = StartButton. new
10

This has two problems. First, this will lead to a large number of subclasses. If
Interface to Button changes, this cocould involve us in a lot of maintenance. Second,
Actions shortmed when a button is pressed are expressed at the wrong level; they are
Not a feature of the button but are a feature of the jukebox that uses the buttons. We can
Fix both of these problems using blocks. 1 songlist = SongList. new
2 class JukeboxButton <Button
3def initialize (label, & action)
4 super (label)
5 @ action = action
6end
7def button_pressed
8@action.call (self)
9end
10end
11start_button = JukeboxButton. new ("Start") {songlist. start}
12pause_button = JukeboxButton. new ("Pause") {songlist. pause}
13

The key to all this is the second parameter to JukeboxButton # initialize. If the last
Parameter in a method definition is prefixed with an ampersand (such as & action ),
Ruby looks for a code block whenever that method is called. That code block is converted
To an object of class Proc and assigned to the parameter. You can then treat
The parameter as any other variable. In our example, we assigned it to the instance
Variable @ action. When the callback method button_pressed is invoked, we use
Proc # call method on that object to invoke the block.

So what exactly do we have when we create a Proc object? The interesting thing is that
It's more than just a chunk of code. Associated with a block (and hence a Proc object)
Is all the context in which the block was defined: the value of self and the methods,
Variables, and constants in scope. Part of the magic of Ruby is that the block can be still
Use all this original scope information even if the environment in which it was defined
Wocould otherwise have disappeared. In other versions, this facility is called a closure.

Let's look at a contrived example. This example uses the method lambda, which converts
A block to a Proc object.

1def n_times (thing)
2 return lambda {| n | thing * n}
3end
4p1 = n_times (23)
5p1. call (3) #-> 69
6p1. call (4) #-> 92
7p2 = n_times ("Hello ")
8p2. call (3) #-> "Hello"

The method n_times returns a Proc object that references the method's parameter,
Thing. Even though that parameter is out of scope by the time the block is called,
Parameter remains accessible to the block.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.