I'm trying to get a handle on why the following code works by printing
out 'frog'
because @x looks like instance variable syntax. I know that some of
these things don't work the way I'd expect.
Well it is an instance variable, of the class. This is commonly
called a class instance variable, not to be confused with a class
variable.
Within the lexical scope of class..end self is the class, so @x is an
instance variable of the class.
Consider this:
class Test
# self here is Test which holds the methods for its instances
attr_reader :x # this is actually a message sent to Test, which
defines an instance method
end
Now when you say
class Test
class << self # (which could also be class << Test) #self becomes the singleton class of Test.
attr_reader :x # and here the attr_reader message is sent to
Test's singleton class
# resulting in an "instance method" in
the singleton class which is a
# class method of Test
end
end
···
On Nov 15, 2007 3:15 PM, wbsurfver@yahoo.com <wbsurfver@gmail.com> wrote:
I'm trying to get a handle on why the following code works by printing
out 'frog'
because @x looks like instance variable syntax. I know that some of
these things don't work the way I'd expect.
@x is an instance variable belonging to the object-that-is-a-class, not to an-object-that-is-an-instance-of-that-class. I cover this with some helpful pictures here:
<http://www.visibleworkings.com/little-ruby/>
Drawing pictures really helps in figuring out what's going on.
···
On Nov 15, 2007, at 2:15 PM, wbsurfver@yahoo.com wrote:
I'm trying to get a handle on why the following code works by printing
out 'frog'
because @x looks like instance variable syntax. I know that some of
these things don't work the way I'd expect.
Thanks for all the helpful comments, I will have a look at that site
and study this some more. I kind of understand I think the gist of
this. I do love Ruby and Rails to the point of almost an obsession,
but my first impression of this particular instance question is that
it seems sort of unintuitive at first pass anyway.
When I first read about class and instance variables I thought I
understood it until I saw some of these other types of examples. I
wrote another test program below which prints the 2 different values
of @x, I was out walking the dog thinking about this and I decided I
needed to try this one example out to make sure I knew what it did,
and I wasn't exactly sure what it was going to do until I tried it.