[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

nested methods

7stud --

3/20/2009 10:22:00 AM

Hi,

This example is from pickaxe2(I can't find the page):

def toggle

def toggle
puts "subsequent"
end

puts "first"
end

toggle
toggle
toggle

--output:--
first
subsequent
subsequent


Can someone explain why the nested method hides the outer method?

Thanks.
--
Posted via http://www.ruby-....

7 Answers

James Coglan

3/20/2009 10:28:00 AM

0

[Note: parts of this message were removed to make it a legal post.]

2009/3/20 7stud -- <bbxx789_05ss@yahoo.com>

> Hi,
>
> This example is from pickaxe2(I can't find the page):
>
> def toggle
>
> def toggle
> puts "subsequent"
> end
>
> puts "first"
> end
>
> toggle
> toggle
> toggle
>
> --output:--
> first
> subsequent
> subsequent
>
>
> Can someone explain why the nested method hides the outer method?


The first call redefines toggle on the current object (which here seems to
be the global main object) and then returns "first". After this, toggle has
been replaced by the inner method so it returns "subsequent" for all further
calls.

--
James Coglan
http://github.c...

-lim-

3/20/2009 11:18:00 AM

0

> Can someone explain why the nested method hides the outer method?

There are no nested methods in ruby (similar to smalltalk, eiffel,
java and unlike scheme, python etc.).

James Coglan

3/20/2009 11:27:00 AM

0

[Note: parts of this message were removed to make it a legal post.]

2009/3/20 Leo <minilith@gmail.com>

> > Can someone explain why the nested method hides the outer method?
>
> There are no nested methods in ruby (similar to smalltalk, eiffel,
> java and unlike scheme, python etc.).


This statement could confuse people given the above. Clearly you can define
methods inside other methods, the point is that the 'inner' method is not
local to the outer one. The inner one becomes defined in the same scope as
the outer one, and does not remember the environment it was created in.
Methods are not closures, unlike blocks/procs/lambdas.

--
James Coglan
http://github.c...

Brian Adkins

3/20/2009 12:11:00 PM

0

James Coglan <jcoglan@googlemail.com> writes:

> [Note: parts of this message were removed to make it a legal post.]
>
> 2009/3/20 Leo <minilith@gmail.com>
>
>> > Can someone explain why the nested method hides the outer method?
>>
>> There are no nested methods in ruby (similar to smalltalk, eiffel,
>> java and unlike scheme, python etc.).
>
>
> This statement could confuse people given the above. Clearly you can define
> methods inside other methods, the point is that the 'inner' method is not
> local to the outer one. The inner one becomes defined in the same scope as
> the outer one,

Isn't being defined in the same scope the antithesis of nesting?

> and does not remember the environment it was created in.
> Methods are not closures, unlike blocks/procs/lambdas.
>
> --
> James Coglan
> http://github.c...
>

--
Brian Adkins
http://...

James Coglan

3/20/2009 12:19:00 PM

0

[Note: parts of this message were removed to make it a legal post.]

2009/3/20 Brian Adkins <lojicdotcom@gmail.com>

> James Coglan <jcoglan@googlemail.com> writes:
>
> > [Note: parts of this message were removed to make it a legal post.]
> >
> > 2009/3/20 Leo <minilith@gmail.com>
> >
> >> > Can someone explain why the nested method hides the outer method?
> >>
> >> There are no nested methods in ruby (similar to smalltalk, eiffel,
> >> java and unlike scheme, python etc.).
> >
> >
> > This statement could confuse people given the above. Clearly you can
> define
> > methods inside other methods, the point is that the 'inner' method is not
> > local to the outer one. The inner one becomes defined in the same scope
> as
> > the outer one,
>
> Isn't being defined in the same scope the antithesis of nesting?
>
> > and does not remember the environment it was created in.
> > Methods are not closures, unlike blocks/procs/lambdas.
>

Depends what you mean by nesting, which was supposed to be my point -- that
the methods are lexically nested but not dynamically nested. In other words
their lexical nesting does not imply lexical scope or closures in this case.

-lim-

3/20/2009 2:20:00 PM

0

> Depends what you mean by nesting, which was supposed to be my point -- that
> the methods are lexically nested but not dynamically nested.

I don't think I understand what you mean with "lexically nested" here.
The point is that the inner method replaces the outer one. Nothing
else. Maybe we could call that stacked methods or whatever. But since
the inner method cannot refer to local variables of the outer method
the word nested IMHO simply makes no sense.

The reason why I posted my possibly confusing statement was because
when I started using ruby, I was myself confused by the lack of nested
methods in ruby. It became easier for me to code in ruby after I
simply accepted that ruby doesn't have nested methods/functions like
many functional languages.

James Coglan

3/20/2009 3:10:00 PM

0

[Note: parts of this message were removed to make it a legal post.]

2009/3/20 Leo <minilith@gmail.com>

> > Depends what you mean by nesting, which was supposed to be my point --
> that
> > the methods are lexically nested but not dynamically nested.
>
> I don't think I understand what you mean with "lexically nested" here.
> The point is that the inner method replaces the outer one. Nothing
> else. Maybe we could call that stacked methods or whatever. But since
> the inner method cannot refer to local variables of the outer method
> the word nested IMHO simply makes no sense.



I meant 'lexically' as in the methods are syntactically nested. You're
right, since methods are not closures it makes no sense to talk of them as
being nested/stacked/whatever when talking about how the code is executed,
they are nested in appearance only.