以下の内容はhttps://tbpgr.hatenablog.com/entry/20140823/1408799628より取得しました。


Ruby | Module | undef_method

概要

Module#undef_method(*name) -> self

詳細

このモジュールのインスタンスメソッド name を未定義にする。

サンプルコード
class Hoge
  def hoge
    'hoge'
  end
  print instance_methods(false), "\n"
  undef_method :hoge
  print instance_methods(false), "\n"
end

出力

$ ruby undef_method.rb
[:hoge]
[]



以上の内容はhttps://tbpgr.hatenablog.com/entry/20140823/1408799628より取得しました。
このページはhttp://font.textar.tv/のウェブフォントを使用してます

不具合報告/要望等はこちらへお願いします。
モバイルやる夫Viewer Ver0.14