LoginSignup
0
0

More than 3 years have passed since last update.

[Ruby] あるインスタンスのブロック内で、そのインスタンスのメソッドやインスタンス変数を使う方法

Last updated at Posted at 2021-03-07

instance_eval を使って実現

Ruby 3.0.0

Code

class Klass 
  def initialize &block 
    @instance_variable 
    instance_eval(&block) unless block.nil? 
  end 
  def instance_method 
    p @instance_variable 
  end 
end 

Using

klass_instance = Klass.new do 
  @instance_variable = :hoge 
  instance_method 
end 

Result

:hoge 

Reference

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