1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【Ruby】privateメソッドって外部から呼び出せるんだ...

Last updated at Posted at 2025-03-25

以下のようにクラス,メソッドが定義されていたとすると、、、

class Sample
    def public_method
        p 'public!'
    end

    private

    def private_method
        p 'private'
    end
end

以下は、いつものように呼び出せる

Sample.new.public_method

しかし、プライベートメソッドは呼び出せない

Sample.new.private_method #=> エラーが発生する

ただし、以下のようにすることで呼び出せる

Sample.new.send(:private_method)

Railsなどで使うのはあまり良くないですね。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?