vote up 4 vote down star

I was just writing a function that took in several values and it got me thinking. When is the number number of arguments to a function / method too many? When (if) does it signal a flawed design? Do you design / refactor the function to take in structs, arrays, pointers, etc to decrease the amount of arguments? Do you refactor the data coming in just to decrease the number of arguments? It seems that this could be a little less applicable in OOP designs, though. Just curious to see how others view the issue.

EDIT: For reference the function I just wrote took in 5 parameters. I use the definition of several that my AP Econ teacher gave me. More than 2; less than 7.

Duplicate of this question

flag

Duplicate; see stackoverflow.com/questions/174968/…. – mmyers Nov 25 '08 at 21:59
Boy do I hope he said "fewer than 7" – Will Dean Nov 25 '08 at 22:37

closed as exact duplicate by Adam Rosenfield Nov 25 '08 at 22:55

16 Answers

vote up 0 vote down

And it depends of the programming language.. In C, it's really not rare to see functions with 7 parameters.. However, in C#, I have rarely seen more than 5 parameters and I personally use less than 3 usually.

// In C 
 draw_dot(x, y, size, red, green, blue, alpha)

// In C# 
 Point point(x,y);
 Color color(red,green,blue,alpha);

 Tool.DrawDot(point, color);
link|flag
You might want to replace C# with any-OO :p (and Yeah, There's got to be a new somewhere missing :p) – pheze Nov 25 '08 at 22:58
vote up 0 vote down

If you ever use a language like Ada with named parameters, there should not be "too much parameters".

link|flag
vote up 0 vote down

Robert C. Martin (Uncle Bob) recommends 3 as a maximum in Clean Code: A Handbook of Agile Software Craftsmanship

I don't have the book with me at the moment but his reasoning has to do with one, two and, to a lesser extent, three argument functions reading well and clearly showing the purpose of the function.

This of course goes hand in hand with his recommendation of very short, well named functions that adhere to the Single Responsibility Principal.

link|flag
vote up 0 vote down

It depends strongly on the types of the arguments. If they are all integers then 2 can be too many. (how do I remember which order?) If any argument accepts null, then the number drops drastically.

The real answer comes from asking yourself:

  • how easy is it to understand calls when I'm reading code?
  • how easy is it to remember the correct arguments and argument order when writing code?
link|flag
vote up 0 vote down

I've heard that 7 figure as well, but I somehow feel that it stems from a time when all you could pass where primitive values.

Nowadays you can pass a reference to an object that encapsulates some complex state (and behaviour). Using 7 of those would definitely be too much.

My personal goal is to avoid using more than 4.

link|flag
vote up 5 vote down

If you have to ask then that's probably too many.

link|flag
vote up 0 vote down

It varies from person to person. Personally, when I have trouble immediately understanding what a function call is doing by reading the invocation in code, it is time to refactor to take the strain off of my gray cells.

link|flag
vote up 0 vote down

Depends on the Function as well, if your function requires heavy user intervention or variables, I wouldn't go past 7-8 range. As far as average number of parameters to go with, 5-6 is the sweet spot in my opinion. If you are using more than that you might want to consider class objects as parameters or other smaller functions.

link|flag
vote up 0 vote down

For me is 5.

It is hard to manage ( remember name, order, etc ) beyond that. Plus If I come that far I have versions with default values that call this one.

link|flag
vote up 3 vote down

I generally believe that if the parameters are functionally related (e.g., coordinates or color components), they should be encapsulated as a class for good measures.

Not that I always follow this myself ;)

link|flag
vote up 1 vote down

Too much parameter is a "Code Smell".

You can divide into multiple methods or use class to regroup variable that have something in common.

To put a number for the "Too much" is something very subjective and depend of your organization and the language you use, A rule of thumb is that if you can't read the signature of your method and have an idea of what is it doing than you might have too much information. Personnaly, I try not to go over 5 parameters.

link|flag
Any reason why you prefer of using class to group variables? I thought a struct would be more sensible here. – RWendi Nov 25 '08 at 22:23
vote up 1 vote down

Well it would most certainly depend on what your function is doing as far as how many would be considered "too many". Having said that, it is certainly possible to have a function with a lot of different parameters that are options on how to handle certain cases inside the function, and having overloads to those functions with sane default values for those options.

With the pervasiveness of Intellisense (or equivalent in other IDEs) and tooltips showing the comments from the XML Documentation in Visual Studio, I don't really think that there's a firm answer to this question.

link|flag
vote up 1 vote down

Quick answer: When you have to stop and ask that question, you've got too many.

Personally I like to keep the number under six. If more is needed, then the solution depends on the problem. One approach is to use "setter" functions to give the values to an object that will eventually perform the function you desire. Another option is to use a struct, as you mentioned. Either way, you can't really go wrong.

link|flag
I believe is this a.k.a. the Command pattern. – moffdub Nov 25 '08 at 22:12
vote up 10 vote down

I don't know, but I know it when I see it.

link|flag
Sorry no votes left. But this is just it. – Gamecat Nov 25 '08 at 21:53
So function parameters are like pornography? – Paul Fisher Nov 25 '08 at 21:58
Ok, that is an interesting change of subject. It gives a whole other meaning to the term software... – Gamecat Nov 25 '08 at 22:00
like art and porn :) – baash05 Nov 25 '08 at 22:49
vote up 13 vote down

According to Steve McConnell in Code Complete, you should

Limit the number of a routine's parameters to about seven

link|flag
Big fan of that book – Uri Nov 25 '08 at 21:56
Seven seems to be a number that should not be exceeded in any kind of interface, parameters or menuentries. – Jonke Nov 25 '08 at 21:59
Seven is the amount of information that can be stored in short term memory. At least that is what they told me, but I forgot the details. – Gamecat Nov 25 '08 at 22:01
That's also why phone numbers started out at 7 digits. – LeopardSkinPillBoxHat Nov 25 '08 at 22:10
can we have a reference for that 7 digit phone number claim? – tim Nov 25 '08 at 22:30
show 4 more comments
vote up -1 vote down

I would say maximum 4 . Anything above , I think should be placed within a class .

link|flag
what if it is for a classes constructor that has 20 properties? – Blankman Nov 25 '08 at 21:53
Property doesn't take parameters... – Daok Nov 25 '08 at 21:55

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