LoginSignup
97
85

More than 5 years have passed since last update.

Rubyで使えるメソッドの一覧を取得する

Posted at
Class.methods #クラスのメソッド一覧

instance.instance_methods #クラスのインスタンスメソッド一覧

instance.public_methods #publicなメソッド一覧

instance.instance_public_methods #publicなインスタンスメソッド一覧

instance.methods(false) #継承したメソッドは含まない

メソッド一覧が:symbolの配列で返ってくる

97
85
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
97
85