def map.hello() p "Hello World" end p map.singleton_methods() 返回用户对该对象变量单独定义的方法。 输出结果:
参考资料: A method
given only to a single object is called a singleton method. http://www.rubyist.net/~slagell/ruby/singletonmethods.html 这篇文章详细的介绍了什么是Singleton Method。