码迷,mamicode.com
首页 > 其他好文 > 详细

使用 alias 为方法添加新功能

时间:2014-08-24 10:17:32      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   使用   io   div   log   sp   

def hello # A nice simple method
  puts "Hello World" # Suppose we want to augment it...
end 
alias original_hello hello
# Give the method a backup name

def hello puts "Your attention please" original_hello puts "This has been a test" end

 

使用 alias 为方法添加新功能

标签:style   blog   color   os   使用   io   div   log   sp   

原文地址:http://www.cnblogs.com/laoquans/p/3932525.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!