5
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 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 | This |
| instance_methods | public、protected | column |
| private_methods | private | will |

共同編集者

@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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?