vote up 9 vote down star
5

In another question, a popular answer suggested that large functions demonstrate poor form.

How large would you let a function get before you broke it up?

(This could be in lines of code or a more qualitative answer, your choice. This is probably a language-dependent question to some extent, so you might want to indicate that and how compactly you normally write code--IOCCC style or space-o-plenty?--in your answer.)

flag

Added "subjective" tag here so it doesn't turn into a flame war... – Bob King Sep 24 '08 at 20:15
Ah, thanks, I forgot about that one. – Kev Sep 24 '08 at 20:17

19 Answers

vote up 1 vote down check

I found this talk by Marcel Molina, Jr very interesting. It lays out 3 rules to judge code and in particular functions: proportional, integrity and clarity.

link|flag
vote up 24 vote down

There is no hard rule and it really comes down to judgement and experience.

A function should have a singular purpose that is easily defined.

When reading code for a single function, you should be able to remember (mostly) what it is doing from beginning to the end. If you get partway through a function and start thinking "what was this function supposed to be doing again?" then that's a sure sign that it's too long.

link|flag
2  
Also if there is any code block is repeated in the function it needs a rethink. – Schalk Versteeg Dec 11 '08 at 9:24
vote up 13 vote down

Usually if it can't fit on my screen, it's a candidate for refactoring. But, screensize does vary, so I usually look for under 25-30 lines. It's pretty subjective, though. If it feels long, then it's too long.

link|flag
Intent, function, etc. is more important (the "do one thing and do it well" answer that keeps popping up) than an exact metric in number of lines. However, I do find the "it prints from Notepad.exe without line wrapping on a single sheet of A4/letter paper" a good ball park figure. – peSHIr Apr 6 at 9:21
vote up 10 vote down

I wouldn't worry so much about lines of code as keeping your function to one single task or idea. It is true that a long function can still keep to a single task, but that is less of a smell and less important to split up then a function that is trying to do several different things.

One way to determine if a function is the correct size and scope is to write a unit test for it. If you cannot write a concise unit test for your function that is testing one thing, your function is probably doing too much.

link|flag
IMO you should worry about keeping your methods short and having them do one "thing" equally. I have seen a lot of cases where a method does "one" thing that requires extremely verbose code - generating an XML document, for example, and it's not an excuse for letting the method grow extremely long. – scottschulthess Sep 15 at 17:23
vote up 6 vote down

I don't trust any lines of code measure for this answer.

I think you should make functions as small as you can make them, as long as they remain discrete sensible operations in your domain. If you break a function ab() up into a() and b() and it would NEVER make sense to call a() without immediately calling b() afterwards, you haven't gained much.

Perhaps it's easier to test or refactor, you might argue, but if it really never makes sense to call a() without b(), then the more valuable test is a() followed by b().

Make them as simple and short as they can be, but no simpler!

link|flag
1  
"If you break a function ab() up into a() and b() and it would NEVER make sense to call a() without immediately calling b() afterwards, you haven't gained much." It may make it clearer to a maintenance programmer that the operations 'a' and 'b' are being done. – alankdkd Sep 24 '08 at 20:51
1  
But if they don't make sense independently, then I suggest to you that it can't be conceived of as an atomic operation, which makes it unclear what "doing a without b" really means. e.g. imagine an api where I had to "create" then "prepare" then "init" a structure, always in the same order... – Daniel Papasian Sep 24 '08 at 21:09
vote up 5 vote down

15 lines of code is good, but it can get larger or shorter depending on what exactly you are doing. The most important thing is to keep all the sentences of a function at the same abstraction level. For example, this would be incorrect:

Foo result = doSomething();
String another = extractString(result);

int index = another.lastIndexOf('.');
if (index != -1) {
  another = index.substring(0, index);
}
return another;

Note that the first two lines invoke methods that do something at a higher level than the four last lines of code. This is better:

Foo result = doSomething();
String another = extractString(result);
another = removeExtension(another);
return another;

EDIT: why this is the most important thing for me? If you try to keep everything in a method in the same abstraction level, you'll end up with small functions without thinking about it. If you start having more than, say, 30 lines of code, then you are probably doing to much stuff (and part of that stuff might be just little details). By abstracting those details in other methods, you reduce the function size. You just don't reduce a method's size because it's bad, you do it to improve readability and to make it easier to understand, and abstraction accomplishes both.

link|flag
This is the most interesting answer to me, but could you explain what makes this 'the most important thing'? – Kev Sep 24 '08 at 20:36
vote up 4 vote down

A subjective answer to a subjective question: functions should be as big as necessary, but as simple as possible.

Honestly -- I would not limit by number of pages, lines, etc. because each situation has different specifics.

link|flag
vote up 3 vote down

A good rule of thumb to follow is 1.5 screens of code. If you have to hit page up/page down more than once to see the whole thing, then it's too long. This means that if you have more vertical resolution, you have have longer functions.

link|flag
umm...ok, why the downvotes? – 1800 INFORMATION Sep 24 '08 at 20:15
1  
"1.5 screens" is a completely arbitrary size limit and it doesn't make any sense to limit function size to a visual scope. – 17 of 26 Sep 24 '08 at 20:19
thats why he said rule of thumb, not the absolute set in stone rule: en.wikipedia.org/wiki/Rule_of_thumb – mattlant Sep 24 '08 at 20:24
Software development is full of rules like this - it doesn't make them any less useful. If you limit function size to visual scope it is easier to hold and understand. – 1800 INFORMATION Sep 24 '08 at 20:25
i would up vote you but i am out of votes for the day :/ – mattlant Sep 24 '08 at 20:25
show 3 more comments
vote up 3 vote down

If you're forcing your functions to be no more than X lines just by breaking them up arbitrarily, then that's bad programming style. The function might fit on the screen, but if it looks like:

void HugeFunction()
{
    HugeFunctionPart1();
    HugeFunctionPart2();
    HugeFunctionPart3();
    HugeFunctionPart4();
    HugeFunctionPart5();
}

it's no more readable than if you had written the whole thing out.

If you're losing track of where you are in a function, then it's probably too long. Look for lines of code that you can say "OK, it does this" and pull that out into a function.

link|flag
As a matter of fact, even that might make sense, as it forces you to explicitly pass any required data from HugeFunkctionPart1 to ..Part2 etc. That clarifies data flow. Of course, if you then use a dozen parameters each... – sleske May 15 at 9:02
vote up 3 vote down

It must be short enough to grok in its entirety.

link|flag
vote up 1 vote down

A function should do one thing and do it well.

link|flag
vote up 1 vote down

quick answer: a good rule of thumb is a method that is doing too many different things, and those things aren't that related, or the different tasks in the method are at different levels of detail.

Extract Method and Consolidate Duplicate Conditional Fragments are two useful refactorings.

... Sometimes you need to rerrange the code to spot similarities when refactoring.

link|flag
vote up 1 vote down

I'm usually checking my Python code with pylint. I'm using the default configuration file which state that a function should have a maximum number of statements of 50.

link|flag
vote up 0 vote down

A function should accomplish a single task, and do it well. If it does more than a single overall task, then it should be broken up. Let the name function (singluar) guide you.

KISS & DRY

link|flag
vote up 0 vote down

Length may not be the prime issue - there may be situations where longer is better.

What I once read and I've agree with: If you are able to properly NAME your function, you're usually right. So "CalculateEndOfTheWorld()" is good, but "DoAllSortOfUserManagementStuff()" is bad, in that case you might want to refactor the function.

1 Function = 1 Task = 1 Name.

link|flag
vote up 0 vote down

My problem with big functions is that I want to hold everything that's happening in the code, in my head all at once. That's really the key. It also means that we're talking about a moving target.

Dense perl should appear in shorter chunks than padded VB. And, worse, at only 38, I'm finding that while my abilities have matured in nice ways, by core ability to grok a bunch of code is diminishing and thus the size of code blocks I want to handle is shrinking.

Because the goal is usability, the one screen rule really does make sense even though you can point to seeming flaws like varying screen resolutions. If you can see it all at once without paging around the editor, you are very much more likely to handle it all as a block.

What if you're working on a team? I suppose the best thing for the team would be to determine the lowest common denominator and target that size. If you have someone with a short attention-span or an IDE set up displaying around 20 lines, that's probably a good target. Another team might be good with 50.

And yeah, whatever your target is, sometimes you'll go over. 40 lines instead of 25 when the function can't really be broken up reasonably is fine here and there. You and your partners will deal with it. But the 3K line single-function VB6 modules that exist in some of my employer's legacy suites are insane!

link|flag
vote up 0 vote down

Break down the function until it's clear. When you're making coding standards, don't set a line limit (or even a character limit). Just aim for clarity and maintainablility.

One of the things that leads to long functions is repeating long chunks of code over and over with slight variations. If you find yourself typing the same thing, or copying and pasting a chunk of code, split that off into a function. Use generics or templates to abstract patterns where different types are being used in the same way. Some languages let you do even better and let you abstract syntax (mostly LISP variants). Even if you're language doesn't support these type of abstractions, code generators can be your friend. Any time that you write some piece of code more than once

Often long functions are the result of a long list of inherently sequential events. Usually these can be easily and naturally grouped into smaller, more focused functions. However, if you really do have a large number of dependant commands that need to run in a certain order, then do what you can to make that structure clear. You can refactor until each command can be represented in a single line of code, all formatted similarly to indicate the linearness of the code. If this is a sequence that changes often, you could build/use a workflow framework to move the long list of commands into a configuration file.

link|flag
vote up 0 vote down

I prefer to try to keep everything in a function on the same level of abstraction and as short as possibly. Programming is all about managing complexity and short one purpose functions make it easier to do that.

link|flag
vote up -1 vote down

The maximum function size is set through the compiler of your language. What I means is that the function size is not a dogma. If you have a large switch that you can be read very easy then there is no need for break in multiple methods.

A method should be a logical unit. It should do some thing with few parameters. If your function has more parameters as lines then you should not break. That it can make sense for a new function if it has only 5 lines.

The code should be good readble.

link|flag

Your Answer

Get an OpenID
or

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