Strict pragma & scope

I’m still reading “the book” and am trying to see if I got this right.
Sometimes the book isn’t direct enough on “this is how you will be
programming
in ruby”.

Is there anything like perl strict pragma in ruby?

Scope. It seems that there are some different approaches to scope. For
example, objects created in a loop remain in scope after you leave the
scope of
the iterator. So my favorite temporary variables of i, x, foo, and bar
are all
now permanent variable elements in my code blocks from their first use.
True/False?

On 20/01/06, Tom A. [email protected] wrote:

I’m still reading “the book” and am trying to see if I got this right.
Sometimes the book isn’t direct enough on “this is how you will be programming
in ruby”.

This is, in part, because not everyone programs in Ruby quite the same
way. I know that my style is very distinctive from others’ style (and
my style is pretty “mainstream,” nonetheless).

Is there anything like perl strict pragma in ruby?

Not quite, but Ruby is more strict than Perl in any case. Running ruby
-w (even in your bangpath line) will give you more information.

Scope. It seems that there are some different approaches to scope. For
example, objects created in a loop remain in scope after you leave the scope of
the iterator. So my favorite temporary variables of i, x, foo, and bar are all
now permanent variable elements in my code blocks from their first use.
True/False?

I believe that if you do a “for” loop, your statement is true.

irb(main):001:0> (1…10).each { |i| }
=> 1…10
irb(main):002:0> i
NameError: undefined local variable or method `i’ for main:Object
from (irb):2
irb(main):003:0> for i in 1…10
irb(main):004:1> end
=> 1…10
irb(main):005:0> i
10

The idiomatic way to loop in Ruby is with #each or other iterator items.

Now, if you’ve defined i outside of your iterator, current Ruby will
overwrite it.

irb(main):001:0> i = 0
=> 0
irb(main):002:0> (1…10).each { |i| }
=> 1…10
irb(main):003:0> i
=> 10

I believe that there will be changes to this moving forward, but I
can’t remember the exact scope changes.

-austin

On Jan 20, 2006, at 5:41 AM, Tom A. wrote:

Scope. It seems that there are some different approaches to
scope. For example, objects created in a loop remain in scope
after you leave the scope of the iterator. So my favorite
temporary variables of i, x, foo, and bar are all now permanent
variable elements in my code blocks from their first use.
True/False?

The non-block looping constructs: while, unless, for/in do not
create a new scope.

The block looping constructs: each, loop do create a new scope.
The scoping behavior exists because of the block, not because the
methods each or loop have some special properties.

So basically your question is about blocks, not about loops.

Matz has acknowledge that the behavior of block arguments and block
local variables
is confusing and is exploring some alternatives.

See Austin’s post for an illustration of the current behavior of
block arguments and
local variables within a block.

Gary W.

Is there anything like perl strict pragma in ruby?

Not quite, but Ruby is more strict than Perl in any case. Running ruby
-w (even in your bangpath line) will give you more information.

Thanks for the examples. As soon as I get back to my ruby installed
machine (not here) I’ll play.
Meanwhile…
I don’t think ruby -w quite does what perls ‘use strict’ pragma will
allow.

Under strict every variable must be identified, if not vartyped.
my $foo;

This prevents me from doing something like:

my $super_ids;

print $super_id,"\n";
(note the typo)
This is nice when it comes to trying to sort out bugs. Otherwise I’m
trying to find out why my variable $super_ids keeps coming up empty.
And after a few hours I’ll probably realize that somewhere in my code I
messed up.

On Jan 20, 2006, at 3:05 PM, Tom A. wrote:

my $super_ids;

print $super_id,"\n";

In ruby…

super_ids = nil # assign to declare

print super_id, “\n”

If you run this you’ll get
NameError: undefined local variable or method `super_id’ for main:Object

On Jan 20, 2006, at 2:05 PM, Tom A. wrote:

I don’t think ruby -w quite does what perls ‘use strict’ pragma will
allow.

That’s correct, -w is similar to Perl’s warnings.

Under strict every variable must be identified, if not vartyped.
my $foo;

This prevents me from doing something like:

my $super_ids;

print $super_id,"\n";
(note the typo)

Ruby requires we declare a local variable before we use it, so you
are all set. :wink:

James Edward G. II

On 20/01/06, James Edward G. II [email protected] wrote:

Ruby requires we declare a local variable before we use it, so you
are all set. :wink:

s/declare/set/

There are no variable declarations in Ruby.

The more likely problem that Tom is to find is with instance
variables. It would be nice to have some way of detecting missing
assignments to instance variables, but only have it show up when
requested.

-austin

Logan C. wrote:

On Jan 20, 2006, at 3:05 PM, Tom A. wrote:

my $super_ids;

print $super_id,"\n";

In ruby…

super_ids = nil # assign to declare

print super_id, “\n”

If you run this you’ll get
NameError: undefined local variable or method `super_id’ for main:Object

Which basically means that in this “language” there is NO WAY to declare
a variable. No way to say, “hey dude, I want a new (censored) x in
here”. All you get is a RUNTIME error if you print (or compute with
or…) a variable sooner than you assign to it. Which is pretty useless.
And which means that if I do a

coll.each { |i| blah blah blah}

there is no telling whether it will use a new local i or some i
“declared” outside. And there is no way to make sure it does one or the
other.

And whenever I need to loop through something I have to make sure i use
a different variable than any that could ever be “declared” in the same
scope. Don’t you think it’s a bit stupid? You probably don’t, you
program in Ruby.

On Feb 28, 2007, at 8:10 AM, Jenda K. wrote:

Logan C. wrote:

On Jan 20, 2006, at 3:05 PM, Tom A. wrote:

my $super_ids;

print $super_id,“\n”;

In ruby…

super_ids = nil # assign to declare
super_ids (plural)

print super_id, “\n”
super_id (singular)
or…) a variable sooner than you assign to it. Which is pretty
And whenever I need to loop through something I have to make sure i
use
a different variable than any that could ever be “declared” in the
same
scope. Don’t you think it’s a bit stupid? You probably don’t, you
program in Ruby.

No, you just need to know if YOU created such a variable within the
current lexical scope. Your ‘i’ in the block will always exist
INSIDE the block. In Ruby 1.8, that reuses the ‘i’ that already
exists in the current scope, but 1.9/2.0 changes this (I believe;
haven’t personally checked this out).

Of course, if you can’t consistently spell your variables the same
way, the “language” isn’t likely to know what you meant.

-Rob

Rob B. http://agileconsultingllc.com
[email protected]

Rob B. wrote:

On Feb 28, 2007, at 8:10 AM, Jenda K. wrote:

Logan C. wrote:

On Jan 20, 2006, at 3:05 PM, Tom A. wrote:

my $super_ids;

print $super_id,“\n”;

In ruby…

super_ids = nil # assign to declare
super_ids (plural)

print super_id, “\n”
super_id (singular)
or…) a variable sooner than you assign to it. Which is pretty
And whenever I need to loop through something I have to make sure i
use
a different variable than any that could ever be “declared” in the
same
scope. Don’t you think it’s a bit stupid? You probably don’t, you
program in Ruby.

I touched on the issue of lack of variable declarations in my short
crtique here:
http://blog.surfulater.com/2007/02/21/write-ruby-code-faster-with-ed-for-windows/

Neville F., http://www.getsoft.com http://www.surfulater.com