I have a method, that should accept maximum 2 arguments. Its code is like this:

def method (*args)
  if args.length < 3 then
    puts args.collect
  else
    puts "Enter correct number of  arguments"
  end
end

Is there more elegant way to specify it?

link|improve this question

75% accept rate
feedback

3 Answers

up vote 8 down vote accepted

You have several alternatives, depending on how much you want the method to be verbose and strict.

# force max 2 args
def foo(*args)
  raise ArgumentError, "Too much arguments" if args.length > 2
end

# silently ignore other args
def foo(*args)
  one, two = *args
  # use local vars one and two
end

# let the interpreter do its job
def foo(one, two)
end

# let the interpreter do its job
# with defaults
def foo(one, two = "default")
end
link|improve this answer
1  
+1 but you forgot def(one, two, *ignored); end – the Tin Man Feb 11 '11 at 13:25
feedback

if the maximum is two arguments, why use the splat operator like that at all? Just be explicit. (unless there is some other constraint that you haven't told us about.)

def foo(arg1, arg2)
  # ...
end

Or...

def foo(arg1, arg2=some_default)
  # ...
end

Or even...

def foo(arg1=some_default, arg2=some_other_default)
  # ...
end
link|improve this answer
feedback

Raise an error better. If the arguments are not correct, this is serious problem, which shouldn't pass in your with a humble puts.

def method (*args)
  raise ArgumentError.new("Enter correct number of  arguments") unless args.length < 3
  puts args.collect
end
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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