Where you find there is more to blocks than meets the eye and you learn how to smuggle variables across scopes.
As Bill notes on a piece of scratch paper, a block is not just a floating piece of code. You can’t run code in a vacuum. When code runs, it needs an environment: local variables, instance variables, self….
Because these entities are basically names bound to objects, you can call them the bindings for short. The main point about blocks is that they are all inclusive and come ready to run. They contain both the code and a set of bindings.
You’re probably wondering where the block picks up its bindings. When you define the block, it simply grabs the bindings that are there at that moment, and then it carries those bindings along when you pass the block into a method:
| def my_method |
| x = "Goodbye" |
| yield("cruel") |
| end |
| |
| x = "Hello" |
| my_method {|y| "#{x}, #{y} world" } # => "Hello, cruel world" |
When you create the block, you capture the local bindings, such as x. Then you pass the block to a method that has its own separate set of bindings. In the previous example, those bindings also include a variable named x. Still, the code in the block sees the x that was around when the block was defined, not the method’s x, which is not visible at all in the block.
You can also define additional bindings inside the block, but they disappear after the block ends:
| def just_yield |
| yield |
| end |
| |
| top_level_variable = 1 |
| |
| just_yield do |
| top_level_variable += 1 |
| local_to_block = 1 |
| end |
| |
| top_level_variable # => 2 |
| local_to_block # => Error! |
Because of the properties above, a computer scientist would say that a block is a closure. For the rest of us, this means a block captures the local bindings and carries them along with it.
So, how do you use closures in practice? To understand that, take a closer look at the place where all the bindings reside—the scope. Here you’ll learn to identify the spots where a program changes scope, and you’ll encounter a particular problem with changing scopes that can be solved with closures.
Imagine being a little debugger making your way through a Ruby program. You jump from statement to statement until you finally hit a breakpoint. Now catch your breath and look around. See the scenery around you? That’s your scope.
You can see bindings all over the scope. Look down at your feet, and you see a bunch of local variables. Raise your head, and you see that you’re standing within an object, with its own methods and instance variables; that’s the current object, also known as self. Farther away, you see the tree of constants so clear that you could mark your current position on a map. Squint your eyes, and you can even see a bunch of global variables off in the distance.
But what happens when you get tired of the scenery and decide to move on?
This example shows how scope changes as your program runs, tracking the names of bindings with the Kernel#local_variables method:
| v1 = 1 |
| class MyClass |
| v2 = 2 |
| local_variables # => [:v2] |
| def my_method |
| v3 = 3 |
| local_variables |
| end |
| local_variables # => [:v2] |
| end |
| |
| obj = MyClass.new |
| obj.my_method # => [:v3] |
| obj.my_method # => [:v3] |
| local_variables # => [:v1, :obj] |
Track the program as it moves through scopes. It starts within the top-level scope that you read about in . After defining v1 in the top-level scope, the program enters the scope of MyClass’s definition. What happens then?
Some languages, such as Java and C#, allow “inner scopes” to see variables from “outer scopes.” That kind of nested visibility doesn’t happen in Ruby, where scopes are sharply separated: as soon as you enter a new scope, the previous bindings are replaced by a new set of bindings. This means that when the program enters MyClass, v1 “falls out of scope” and is no longer visible.
In the scope of the definition of MyClass, the program defines v2 and a method. The code in the method isn’t executed yet, so the program never opens a new scope until the end of the class definition. There, the scope opened with the class keyword is closed, and the program gets back to the top-level scope.
What happens when the program creates a MyClass object and calls my_method twice? The first time the program enters my_method, it opens a new scope and defines a local variable, v3. Then the program exits the method, falling back to the top-level scope. At this point, the method’s scope is lost. When the program calls my_method a second time, it opens yet another new scope, and it defines a new v3 variable (unrelated to the previous v3, which is now lost). Finally, the program returns to the top-level scope, where you can see v1 and obj again. Phew!
Here is the example’s important point: “Whenever the program changes scope, some bindings are replaced by a new set of bindings.” Granted, this doesn’t happen to all the bindings each and every time. For example, if a method calls another method on the same object, instance variables stay in scope through the call. In general, though, bindings tend to fall out of scope when the scope changes. In particular, local variables change at every new scope. (That’s why they’re “local.”)
As you can see, keeping track of scopes can be a tricky task. You can spot scopes more quickly if you learn about Scope Gates.
There are exactly three places where a program leaves the previous scope behind and opens a new one:
Class definitions
Module definitions
Methods
Scope changes whenever the program enters (or exits) a class or module definition or a method. These three borders are marked by the keywords class, module, and def, respectively. Each of these keywords acts like a Spell: .
For example, here is the previous example program again, with Scope Gates clearly marked by comments:
| v1 = 1 |
| class MyClass # SCOPE GATE: entering class |
| v2 = 2 |
| local_variables # => ["v2"] |
| def my_method # SCOPE GATE: entering def |
| v3 = 3 |
| local_variables |
| end # SCOPE GATE: leaving def |
| local_variables # => ["v2"] |
| end # SCOPE GATE: leaving class |
| |
| obj = MyClass.new |
| obj.my_method # => [:v3] |
| local_variables # => [:v1, :obj] |
Now it’s easy to see that this program opens three separate scopes: the top-level scope, one new scope when it enters MyClass, and one new scope when it calls my_method.
There is a subtle difference between class and module on one side and def on the other. The code in a class or module definition is executed immediately. Conversely, the code in a method definition is executed later, when you eventually call the method. However, as you write your program, you usually don’t care when it changes scope—you only care that it does.
Now you can pinpoint the places where your program changes scope—the spots marked by class, module, and def. But what if you want to pass a variable through one of these spots? This question takes you back to blocks.
The more you become proficient in Ruby, the more you get into difficult situations where you want to pass bindings through a Scope Gate ():
| my_var = "Success" |
| |
| class MyClass |
| # We want to print my_var here... |
| def my_method |
| # ..and here |
| end |
| end |
Scope Gates are quite a formidable barrier. As soon as you walk through one of them, local variables fall out of scope. So, how can you carry my_var across not one but two Scope Gates?
Look at the class Scope Gate first. You can’t pass my_var through it, but you can replace class with something else that is not a Scope Gate: a method call. If you could call a method instead of using the class keyword, you could capture my_var in a closure and pass that closure to the method. Can you think of a method that does the same thing that class does?
If you look at Ruby’s documentation, you’ll find the answer: Class.new is a perfect replacement for class. You can also define instance methods in the class if you pass a block to Class.new:
| my_var = "Success" |
| |
* | MyClass = Class.new do |
* | # Now we can print my_var here... |
* | puts "#{my_var} in the class definition!" |
| |
| def my_method |
| # ...but how can we print it here? |
| end |
| end |
Now, how can you pass my_var through the def Scope Gate? Once again, you have to replace the keyword with a method call. Think of the discussion about Dynamic Methods (): instead of def, you can use Module#define_method:
| my_var = "Success" |
| |
| MyClass = Class.new do |
| "#{my_var} in the class definition" |
| |
* | define_method :my_method do |
* | "#{my_var} in the method" |
* | end |
| end |
| |
* | MyClass.new.my_method |
| |
| require_relative "../test/assertions" |
| assert_equals "Success in the method", MyClass.new.my_method |
<= | Success in the class definition |
| Success in the method |
If you replace Scope Gates with method calls, you allow one scope to see variables from another scope. Technically, this trick should be called nested lexical scopes, but many Ruby coders refer to it simply as “flattening the scope,” meaning that the two scopes share variables as if the scopes were squeezed together. For short, you can call this spell a Spell: .
Once you know about Flat Scopes (), you can do pretty much whatever you want with scopes. For example, assume that you want to share a variable among a few methods, and you don’t want anybody else to see that variable. You can do that by defining all the methods in the same Flat Scope as the variable:
| def define_methods |
| shared = 0 |
| |
| Kernel.send :define_method, :counter do |
| shared |
| end |
| |
| Kernel.send :define_method, :inc do |x| |
| shared += x |
| end |
| end |
| |
| define_methods |
| |
| counter # => 0 |
| inc(4) |
| counter # => 4 |
This example defines two Kernel Methods (). (It also uses Dynamic Dispatch () to access the private class method define_method on Kernel.) Both Kernel#counter and Kernel#inc can see the shared variable. No other method can see shared, because it’s protected by a Scope Gate ()—that’s what the define_methods method is for. This smart way to control the sharing of variables is called a Spell: .
Shared Scopes are not used much in practice, but they’re a powerful trick and a good example of the power of scopes. With a combination of Scope Gates, Flat Scopes, and Shared Scopes, you can twist and bend your scopes to see exactly the variables you need, from the place you want. Now that you wield this power, it’s time for a wrap-up of Ruby closures.
Each Ruby scope contains a bunch of bindings, and the scopes are separated by Scope Gates (): class, module, and def.
If you want to sneak a binding or two through a Scope Gate, you can use blocks. A block is a closure: when you define a block, it captures the bindings in the current environment and carries them around. So you can replace the Scope Gate with a method call, capture the current bindings in a closure, and pass the closure to the method.
You can replace class with Class.new, module with Module.new, and def with Module#define_method. This is a Flat Scope (), the basic closure-related spell.
If you define multiple methods in the same Flat Scope, maybe protected by a Scope Gate, all those methods can share bindings. That’s called a Shared Scope ().
Bill glances at the road map he created. (See .) “Now that you’ve gotten a taste of Flat Scopes, we should move on to something more advanced: instance_eval.”