简体   繁体   中英

How to pass object as an argument to its method in Ruby

I'm trying to define factorial method for Fixnum class and I don't know how to pass this Fixnum as an argument to my method. Was trying to write something like that

def Fixnum.factorial(n)
    n > 1 ? n * factorial(n-1) : 1
end

though I knew it would be incorrect. So is there some kind of "this" reserved word to access this number?

Something like this:

class Fixnum
  def factorial
      self > 1 ? self * (self - 1).factorial : 1
  end
end

puts 6.factorial
# 720

You know, of course, that this is a silly method of calculating a factorial?

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM