logo
  • 教程列表
  • SO官方文檔
  • 方法缺失
    • 捕獲對未定義方法的呼叫
    • 與塊一起使用
    • 與引數一起使用
    • 使用缺少的方法
  1. StackOverflow 文件
  2. Ruby Language 教程
  3. 方法缺失
  4. 捕獲對未定義方法的呼叫

捕獲對未定義方法的呼叫

Created: November-22, 2018

class Animal
  def method_missing(method, *args, &block)
    "Cannot call #{method} on Animal"
  end
end

=> Animal.new.say_moo 
> "Cannot call say_moo on Animal"
  • 與塊一起使用
  • 方法缺失

Copyright © 2018. All right reserved

tastones.com 备案号:鲁ICP备18045372号-1

  • 關於本站
  • 免責聲明