LoginSignup
1
0

More than 3 years have passed since last update.

Rubyで何も返さない関数は何が返るのか

Last updated at Posted at 2019-09-07

ふと気になったので試してみた。

def piyo
  nil
end

piyo.class # NilClass

def hoge
end

hoge.class # NilClass

def fuga
  if nil
    "fuga"
  end
end

fuga.class # NilClass

結論

なるほど、nilが返るらしい!!

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