method_missing in "Programming Ruby" over my head - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T18:58:31Zhttp://stackoverflow.com/feeds/question/715490http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/715490/methodmissing-in-programming-ruby-over-my-head4method_missing in "Programming Ruby" over my headj. parks2009-04-03T20:01:15Z2009-04-04T11:49:35Z
<p><strong>method_missing</strong> </p>
<p>*obj.method_missing( symbol h , *args i ) → other_obj*</p>
<blockquote>
<p>Invoked by Ruby when obj is sent a
message it cannot handle. symbol is
the symbol for the method called, and
args are any arguments that were
passed to it. The example below
creates a class Roman, which responds
to methods with names consisting of
roman numerals, returning the
corresponding integer values. A more
typical use of method_missing is to
implement proxies, delegators, and
forwarders.</p>
</blockquote>
<pre><code>class Roman
def roman_to_int(str)
# ...
end
def method_missing(method_id)
str = method_id.id2name
roman_to_int(str)
end
end
r = Roman.new
r.iv ! 4
r.xxiii ! 23
r.mm ! 2000
</code></pre>
<p>I just heard about method-missing and went to find out more in <em>Programming Ruby</em> but the above explanation quoted from the book is over my head. Does anyone have an easier explanation? More specifically, is method-missing only used by the interpreter or is there ever a need to call it directly in a program (assuming I'm just writing web apps, as opposed to writing code for NASA)?</p>
http://stackoverflow.com/questions/715490/methodmissing-in-programming-ruby-over-my-head/715516#7155166Answer by Brian for method_missing in "Programming Ruby" over my headBrian2009-04-03T20:07:28Z2009-04-04T11:49:35Z<p>It's basically a catch-all for messages that don't match up to any methods. It's used extensively in active record for dynamic finders. It's what lets you write something like this:</p>
<pre><code>SomeModel.find_by_name_and_number(a_name, a_number)
</code></pre>
<p>The Model doesn't contain code for that find_by, so method_missing is called which looks at is says - I recognize that format, and carries it out. If it doesn't, then you get a method not found error.</p>
http://stackoverflow.com/questions/715490/methodmissing-in-programming-ruby-over-my-head/715573#7155734Answer by Leif for method_missing in "Programming Ruby" over my headLeif2009-04-03T20:18:04Z2009-04-03T20:18:04Z<p>In the Roman example you provide it illustrates how you can extend the functionality of a class without explicitly defining methods.</p>
<p>r.iv is not a method so <code>method_missing</code> catches it and calls <code>roman_to_int</code> on the method id "iv"</p>
<p>It's also useful when you want to handle unrecognized methods elsewhere, like proxies, delegators, and forwarders, as the documentation states.</p>
http://stackoverflow.com/questions/715490/methodmissing-in-programming-ruby-over-my-head/715615#71561511Answer by Samuel for method_missing in "Programming Ruby" over my headSamuel2009-04-03T20:29:51Z2009-04-03T20:29:51Z<p>It's probably best to not think of ruby as having methods. When you call a ruby "method" you are actually sending a message to that instance (or class) and if you have defined a handler for the message, it is used to process and return a value.</p>
<p>So <code>method_missing</code> is a special definition that gets called whenever ruby cannot find an apropriate handler. You could also think of it like a <code>*</code> method.</p>
http://stackoverflow.com/questions/715490/methodmissing-in-programming-ruby-over-my-head/715639#7156393Answer by Roboprog for method_missing in "Programming Ruby" over my headRoboprog2009-04-03T20:35:44Z2009-04-03T23:23:12Z<p>You do not call "<code>method_missing</code>" (the interpreter calls it). Rather, you <em>define</em> it (override it) for a class which you want to make to be more flexible. As mentioned in other comments, the interpreter will call your version of <code>method_missing</code> when the class (or instance) does not ("explicitly"?) define the requested method. This gives you a chance to make something up, based on the ersatz method/message name.</p>
<p>Have you ever done any "reflection" programming in Java? Using this method would be as if the class to be accessed via reflection could look at the string (excuse me, "symbol") of the method name if a no-such-method exception was thrown, and then make something up as that method's implementation on the fly.</p>
<p>Dynamic programming is kind of a "one-up" on reflection.</p>
http://stackoverflow.com/questions/715490/methodmissing-in-programming-ruby-over-my-head/715752#7157524Answer by Don Werve for method_missing in "Programming Ruby" over my headDon Werve2009-04-03T21:18:12Z2009-04-03T21:48:47Z<p>Ruby doesn't have any type enforcement, and likewise doesn't do any checking as to what methods an object has when the script is first parsed, because this can be dynamically changed as the application runs.</p>
<p>What method_missing does, is let you intercept and handle calls to methods that don't exist for a given object. This provides the under-the-hood power behind pretty much every DSL (domain-specific language) written in Ruby.</p>
<p>In the case of the example, every one of 'r.iv', 'r.mm', and so on is actually a method call to the Roman object. Of course, it doesn't have an 'iv' or an 'mm' method, so instead control is passed to method_missing, which gets the name of the method that was called, as well as whatever arguments were passed.</p>
<p>method_missing then converts the method name from a symbol to a string, and parses it as a Roman number, returning the output as an integer.</p>
http://stackoverflow.com/questions/715490/methodmissing-in-programming-ruby-over-my-head/715806#7158061Answer by sris for method_missing in "Programming Ruby" over my headsris2009-04-03T21:30:23Z2009-04-03T21:30:23Z<p>Since you mention web apps I'll guess that you are familiar with Ruby on Rails. A good example of how <code>method_missing</code> can be used is the different <code>find_by_<whatever></code> methods that's available. None of those methods actually exist! They are synthesized during run time. All of this magic happens because of how ruby intercepts invocations of non-existing methods.</p>
<p>You can read more about that and other uses of method_missing <a href="http://www.thirdbit.net/articles/2007/08/01/10-things-you-should-know-about-method%5Fmissing/" rel="nofollow">here</a>. </p>