(from Programming Ruby : http://www.rubycentral.com/book/ref_c_object.html#Object.method_missing)
obj.method_missing( aSymbol [, *args ] ) -> anObject
Invoked by Ruby when obj is sent a message it cannot handle. aSymbol 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.
class Roman def romanToInt(str) # ... end def method_missing(methId) str = methId.id2name romanToInt(str) end end |
r = Roman.new | ||
r.iv | » | 4 |
r.xxiii | » | 23 |
r.mm | » | 2000 |
- 作者: 透明 2005年09月16日, 星期五 11:26
你可以使用这个链接引用该篇日志 http://publishblog.blogdriver.com/blog/tb.b?diaryID=971880
rlxwxwmeqc[url=http://zvore.yi.org/82177478.html]brazilian pussy[/url][url=http://xenggi.66ghz.com/46330167.html]gun games[/url][url=http://wxaxw.22web.net/34298878.html]tatoo designs[/url][url=http://www32.websamba.com/viora/94041272.html]model com[/url][url=http://uenvc.22web.net/16709694.html]football games[/url][url=http://ninfrb.yi.org/20352297.html]blades glory cam xvid mvs[/url]
phxwxwmemp[url=http://ipenxa.isgreat.org/89084666.html]dog book[/url][url=http://netfov.4000webs.com/78621112.html]breathe on me[/url][url=http://netfov.4000webs.com/22495140.html]inflation adjusted[/url][url=http://netfov.4000webs.com/93023258.html]portrait posing[/url][url=http://wecnoa.10001mb.com/19319241.html]britney paris[/url][url=http://wecnoa.10001mb.com/14221517.html]transformer[/url][url=http://wecnoa.10001mb.com/77785671.html]inflation pressure[/url][url=http://wecnoa.10001mb.com/50315263.html]movie lines[/url]
zgxwxwmeld[url=http://www.koolpages.com/kkjlehl/index.html]推广技巧[/url][url=http://www.koolpages.com/kkjlehl/26198047.htm]网站建设策划方案[/url][url=http://www.koolpages.com/kkjlehl/47348973.htm]引擎排名[/url][url=http://www.koolpages.com/kkjlehl/00157846.htm]网站推广mail[/url][url=http://www.koolpages.com/kkjlehl/95187597.htm]网站推广工具下载[/url][url=http://www.powow.com/oxvhseh/index.html]网站推广的方法[/url][url=http://www.powow.com/oxvhseh/80303016.htm]网站推广群发软件[/url][url=http://www.powow.com/oxvhseh/63576814.htm]网站排名榜[/url][url=http://www.powow.com/oxvhseh/46504715.htm]电子邮件群发[/url][url=http://www.powow.com/oxvhseh/90790388.htm]qq无限群发器[/url][url=http://www.pagerealm.com/qoitojq/index.html]如何建立网站[/url][url=http://www.pagerealm.com/qoitojq/40480876.htm]什么网站赚钱[/url][url=http://www.pagerealm.com/qoitojq/93765714.htm]qq消息群发工具[/url][url=http://www.pagerealm.com/qoitojq/13671137.htm]论坛自动发帖工具[/url][url=http://www.pagerealm.com/qoitojq/45301112.htm]进出口企业名录[/url]
这什么语言,ASP吗,
这什么语言,ASP吗,
php里的__call, __get, __set也和这个差不多