`defined?` and `unless` not working as expected

2020-04-02 17:46发布

I was expecting the following snippet:

var = "Not Empty" unless defined? var
var # => nil

to return "Not Empty", but I got nil. Any insight into why this is happening?

2条回答
Animai°情兽
2楼-- · 2020-04-02 18:17

Local variables are defined (as nil) at the point they are parsed. Definition of var2 precedes the condition. That makes var2 defined even when if the assignment is not executed. Then, the condition evaluates that var2 is defined, which retains the value nil for var2.

查看更多
Bombasti
3楼-- · 2020-04-02 18:30

This is one of the only moments in Ruby I would call actual WTFs.

You have to use

unless defined? var
  var = :value
end

With the postfix syntax, the interpreter will internally nil-ify the value so it can reason about the variable, thus making it defined before the check is done:

# Doesn't print anything
unless defined?(foo) and (p(foo) or true)
  foo = :value
end

# Prints nil
bar = :value unless defined?(bar) and (p(bar) or true)
查看更多
登录 后发表回答