LoginSignup
5
1

More than 3 years have passed since last update.

【Ruby】methodsとinstance_methodsの違い

Last updated at Posted at 2019-07-14

発端

クラスオブジェクトに対してmethodsを呼び出した時、クラスメソッドもインスタンスメソッドも返ってくるのかと思っていたら違った。

version

Ruby 2.5.5

違いまとめ

※ご指摘を受けて少し編集しました
class -> クラスオブジェクト、instance -> インスタンスオブジェクト

縦メソッド/横レシーバ クラスオブジェクト インスタンスオブジェクト
methods クラスメソッド インスタンスメソッド
instance_methods インスタンスメソッド NoMethodError

おまけ: 返り値の公開レベル

メソッド 公開レベル
methods public、protected
instance_methods public、protected
private_methods private

共同編集者

@popmac

5
1
1

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
5
1