首页 > 代码库 > 使用 alias 为方法添加新功能

使用 alias 为方法添加新功能

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 为方法添加新功能