obj.instance_variables â array
Instance Public methods
Returns an array of instance variable names for the receiver. Note that simply defining an accessor does not create the corresponding instance variable.
1 2 3 4 5 6 7 | class Fred attr_accessor :a1 def initialize @iv = 3 end end Fred. new .instance_variables #=> [:@iv] |
Please login to continue.