nested methods

7

7stud --

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.
 
J

James Coglan

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

2009/3/20 7stud -- said:
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.
 
L

Leo

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.).
 
J

James Coglan

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

2009/3/20 Leo said:
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.
 
B

Brian Adkins

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

2009/3/20 Leo said:
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?
 
J

James Coglan

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

2009/3/20 Brian Adkins said:
James Coglan said:
[Note: parts of this message were removed to make it a legal post.]

2009/3/20 Leo said:
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.
 
L

Leo

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.
 
J

James Coglan

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

2009/3/20 Leo said:
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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,734
Messages
2,569,441
Members
44,832
Latest member
GlennSmall

Latest Threads

Top