vote up 6 vote down star

How do you check whether a variable is defined in Ruby? Is there an "isset"-type method available?

flag

3 Answers

vote up 8 vote down check

use defined? It will return a string with the kind of the item or nil if it don't exist

irb(main):007:0> a = 1
=> 1
irb(main):008:0> defined? a
=> "local-variable"
irb(main):009:0> defined? b
=> nil
irb(main):010:0> defined? String
=> "constant"
irb(main):011:0> defined? 1
=> "expression"
link|flag
vote up 9 vote down

defined?(your_var) will work. Depending on what you're doing you can also do something like your_var.nil?

link|flag
vote up 4 vote down

this is useful if you want to do nothing if it does exist but create it if it doesn't exist

def get_var
  @var ||= SomeClass.new()
end

this only creates the new class once after that just keeps returning the var

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.