5
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?

More than 5 years have passed since last update.

defind?を三項演算子で使うときに注意すべきこと

Last updated at Posted at 2018-06-04

変数が定義されているか確認する defined?を利用した際、思わぬ挙動をしたのでメモ。

事象

以下は期待通りの挙動ですが、

defined? a # => nil

三項演算子を利用したときに、expressionが返却されてしまいました。

defined? a ? a : nil # => "expression"

原因:カッコ省略でメソッド適用範囲が意図と違ってしまった

原因はカッコを省略したことにより、defined?が意図しない範囲にかかってしまったためでした。

defined? a ? a : nil # => "expression"

defined?(a ? a : nil) # => "expression"

defined?(a) ? a : nil # => nil

結論:defined?を三項演算子で使うときはカッコを省略しない

defined?に限らず、カッコを省略した場合の挙動をきちんと理解して利用しないといけないですね。

defined?(a) ? a : nil # => nil

参考記事

5
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
5
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?