Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a method inside of a method. The interior method depends on a variable loop that is being run. Is that a bad idea?

share|improve this question
2  
You probably didn't mean "rhetorical", I changed it to "theoretical". – Michael Kohl Feb 1 '11 at 15:25
Can you share the code sample or at least a logical equivalent of what you are trying to do. – Aaron Scruggs Feb 1 '11 at 15:26

2 Answers

up vote 16 down vote accepted

No, Ruby doesn't have nested methods.

You can do something like this:

class Test1
  def meth1
    def meth2
      puts "Yay"
    end
    meth2
  end
end

Test1.new.meth1

But that is not a nested method. I repeat: Ruby does not have nested methods.

What this is, is a dynamic method definition. When you run meth1, the body of meth1 will be executed. The body just happens to define a method named meth2, which is why after running meth1 once, you can call meth2.

But where is meth2 defined? Well, it's obviously not defined as a nested method, since there are no nested methods in Ruby. It's defined as an instance method of Test1:

Test1.new.meth2
# Yay

Also, it will obviously be redefined every time you run meth1:

Test1.new.meth1
# Yay

Test1.new.meth1.
# test1.rb:3: warning: method redefined; discarding old meth2
# test1.rb:3: warning: previous definition of meth2 was here
# Yay

In short: no, Ruby does not support nested methods.

Note also that in Ruby, method bodies cannot be closures, only block bodies can. This pretty much eliminates the major use case for nested methods, since even if Ruby supported nested methods, you couldn't use the outer method's variables in the nested method.

share|improve this answer
You might also show, however, how to create a closure lambda in a method for DRYness, or to run recursion. – Phrogz Feb 1 '11 at 17:30
3  
I'm getting the feeling that Ruby might not have nested methods. – Mark Thomas Feb 2 '11 at 1:57
1  
@Mark Thomas: Did I forget to mention that Ruby does not haved nested methods? :-) Seriously: at the time I wrote this answer, there were already three answers, every single one of which claimed that Ruby does have nested methods. Some of those answers even had upvotes despite being blatantly wrong. One was even accepted by the OP, again, despite being wrong. The code snippet that answer uses to prove that Ruby supports nested methods, actually proves the opposite, but apparently neither the upvoters nor the OP actually bothered to check. So, I gave one right answer for every wrong one. :-) – Jörg W Mittag Feb 2 '11 at 11:59

No, no, Ruby does have nested methods. Check this:

def outer_method(arg)
    outer_variable = "y"
    inner_method = lambda {
      puts arg
      puts outer_variable
    }
    inner_method[]
end

outer_method "x" # prints "x", "y"
share|improve this answer
inner_method is not a method, it's a function/lambda/proc. There is no associated instance of any class so it is not a method. – sjs May 25 at 0:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.