vote up 5 vote down star
6

Possible Duplicate:
How many lines of code is too many?

I'm not really that new to programming but I am new to standards as a whole.

Any professionals here care to share what's the standard OP regarding length of methods?

flag
3  
If a method does 2 things then it should be 2 methods – ThePower Aug 18 at 12:42
1  
Also, you should avoid having to scroll to see the reminant of the method! It should all fit comfortably on to 1 screen. – ThePower Aug 18 at 12:44
5  
Anybody saying that a method should fit on one screen just makes me laugh. I have 4 different monitors/resolutions that I use in any given week while coding. So, is one screen-full 39, 47, 55, or 76 lines of code? – Jeromy Irvine Aug 18 at 13:44
2  
The hardest thing about this discussion is being able to clearly see what 'one thing' constitutes and then having the discipline to stick to it, regardless of deadlines. In essence, what's the granularity of your view? Much the same difficulty as 'how big is your screen?". I once heard of the approach that once a method required comments then it was too big. – Lazarus Aug 18 at 14:20
Duplicate of stackoverflow.com/questions/20981/…. – mmyers Aug 18 at 16:35
show 1 more comment

closed as exact duplicate by Bill the Lizard Oct 22 at 14:49

24 Answers

vote up 54 vote down check

As many as it takes to perform the single function that the method should perform.*

*A method should perform one function, and it should be clear what it does by looking at it+

+That's my personal opinion

link|flag
9  
your opinion is correct! – Andrew Bullock Aug 18 at 12:42
I agree. This is specially true in hand coded DAL classes. I have a repository class that retrieves a complex object graph from >10 tables using a single stored proc that returns multiple result sets. Naturally this method is big but it does one thing only. – Pratik Aug 18 at 12:47
True, but I've had someone argue that his 2,000+ line ProcessOrder() method didn't need refactoring as it did "one thing". Having a rule of thumb that says methods generally shouldn't exceed 50, 60, or 120 lines is useful as it triggers an automatic warning bell in my head and forces me to re-evaluate some of my longer methods. – Chris Pebble Aug 18 at 12:52
Hopefully the "it should be clear what it does by looking at it" covers a function greater than 50 lines, nevermind 2000! – phsr Aug 18 at 13:03
5  
The important thing is that everthing in the function should be at the same level of abstraction. – Martin Brown Aug 18 at 14:15
show 2 more comments
vote up 2 vote down

I commonly hear 4-5 lines, that's actual code lines and not formatting or braces.

Heard that just this morning listening to a Hanselminutes with Uncle Bob.

link|flag
4-5 lines?! Ummm! – Kirtan Aug 18 at 12:45
2  
I think that's the extreme approach to ensure seperation of concerns. That said, when I studied programming in Pascal year ago (procedural programming) my instructor told us that in it's purest form a function (and by extrapolation a method) should consist of either function calls or programme statements, not both. If you found yourself needing to mix then you should be pulling the blocks of programme statements out into functions. – Lazarus Aug 18 at 12:54
Maybe for HelloWorld()! – JonnyD Aug 18 at 12:55
@Lazarus, surprisingly this is how I approach my programming. Am I doing it right? – Papuccino1 Aug 18 at 13:08
Why do you say that, it's possible. It's hard work but it does work. – Lazarus Aug 18 at 13:20
show 10 more comments
vote up 4 vote down

As long as methods are concise and understandable and manageable, I don't care how long they are!

But, if you really want to follow standards, Microsoft standards say that methods must ideally adhere to 50-60 lines of code.

link|flag
yes, but have you seen the code that microsoft produces? – Andrew Bullock Aug 18 at 12:41
1  
:rolleyes: Some of it, but don't worry, I've seen the products! – Kirtan Aug 18 at 12:42
vote up 0 vote down

Do you want to count the number of lines that are visibly present in a method or the actual number of lines of code that is being executed. In the case of a loop this will happen.

I think it will be readable if the whole method can be read without scrolling.

link|flag
vote up 13 vote down

As a ball park I get worried if you ever have to scroll to read it.

link|flag
2  
That's a good ball park figure. Pretty much if you look at it and go "Gah! I don't want to read all that!!1" it's probably too long. – Adam Jaskiewicz Aug 18 at 19:08
My laptop screen only fits 15 lines. Some people rotate their screen vertically to fit 200 lines. Where's the ball park? – davidlin Aug 19 at 3:03
3  
Sounds like the ball park would be 15-200 lines then. – Robin Day Aug 19 at 6:02
vote up 3 vote down

it should be not more than one page.

link|flag
2  
It's hard to believe that someone believes this. Now were creating standards based on monitor size, font size, res, etc? Come on. A method should be long enough to complete one task, end of story. – Nick Aug 18 at 12:54
1  
whats a page!? :P – MattH Aug 18 at 12:55
you can move between pages by using Page up, Page down keys :D :) – Wael Dalloul Aug 18 at 13:18
+1: this would have been my answer. We all create coding standards relative to our environment. Where do you think all the 78-character width rules come from? I find it important that the entire function fit on the screen. Any more, and you lose immediate context when analysing it. – Kaz Dragon Aug 18 at 15:21
I think "Page" may have been a bad word here, but I'm on the same line of thinking where you should be able to read the entire function by looking at it on your screen without scrolling. If you have to scroll to read the function, it may need to be broken up to make it easier to understand. – Richard R Aug 18 at 15:28
vote up 2 vote down

I heard many times that complete method should be visible in the IDE window i.e. there should be no scrolling necessary to check a complete method. That would transfer roughly to about 40-45 lines (including braces and blank lines).

link|flag
3  
Unless you get a widescreen monitor and tilt it :) – erikkallen Aug 18 at 12:55
vote up 12 vote down

Most people have a short term memory that can cope with about 7 items. Therefore you methods should be able to be understood by thinking about less then 7 items.

A line of code may be more then 1 item, or many lines of code may be a single item. E.g.

foreach(person in peole)
{
}

Is one item

And

for(int i = 0; i <a.length; i++)

Is one item, as most programmer now what it means

But

For(i = 2; i <a.length-4; w(ref i))

Is many items as it takes a lot of thinking to know what it does

Also a method should do a single thing, if you need to write a comment to split up the code, then put the code in two methods and let the name of the method say what the code does.

(See the Clean Code book for lots of examples of good coding, including writing short methods)


It is clear that line of code is not a good measure of how complex a method is, so I have used the ill-defined concept of “items”. A more scientific metric would include Cyclomatic Complexity etc; however I like have a simple metric that any programmer can work out in his head.

At the end of the day we are looking for.

  • Can you (an experienced programmer) understand what (and why) this method does without having to think
  • Can you (an experienced programmer) understand how this method works with only a few minutes of thinking.
link|flag
2  
Ehm, your last loop will run forever if a.length > 6. Otherwise, it will never run. Why? Because i+w doesn't assign a new value to i... Or is w a function that reduces a.length whenever it's called? Or am I mistaken? That code can really mean a lot of things. :-) (Nice example, +1) – Workshop Alex Aug 18 at 12:55
1  
How many items is a Regex? – Robert Harvey Aug 18 at 21:47
1  
For me a Regex is a lot of items, however for someone that uses them all the times a simple Regex may be only a single item. So it does depend on what the rest of your code base is like. The first for loop is a sinle item, as most programmers know it meens "foreach item in the array" without having to think about it. – Ian Ringrose Aug 19 at 15:27
yes, but if each method has 7 lines, how many methods are going to be needed, and similarly if each class can only have 7 methods, then how many objects.. my head's going to hurt soon. – gbjbaanb Sep 9 at 16:39
No one said 7 LINES of code, or only 7 metheds per class. You can have a lot more then 7 closesly related metheds, e.g. Add(int i), Add(float f), Add(double d), Sub(int i), etc can all be understood as a single item by someone trying to understand a class. – Ian Ringrose Sep 11 at 10:18
show 1 more comment
vote up 0 vote down

In general, I try to make sure my screen will always display at least two methods. Thus, about half a screen high. If I have to scroll a method, I get annoyed. But since I sometimes rotate my screen, half a page could still be a lot of lines.

A better way to decide upon the number of lines is by counting the number of steps that you're taking. Often, certain steps could be grouped together into a new (private) method, thus allowing the code to be re-used. With Case/Switch statements, I just keep one statement per item, thus keeping the number of lines equal to the number of options.

But occasionally, I do break this rule, especially when I know the code isn't really worth re-using. (Often in proof-of-concepts.) In that case, I divide the method in several regions, where each region can be collapsed by the IDE and thus keeping the number of lines short. It also allows me to refactor those methods later, if they do end up being useful.

link|flag
vote up 0 vote down

I normally look around 30 I guess with formatting and comments. I normally look to factor actions out of loops for example if I find a methods code and/or purpose starts to become unclear

link|flag
vote up 1 vote down

This question was already asked. Personally I really like Ruby way of writing methods, and usually having more than 10-15 lines of code in single method means that you're doing it wrong. Browsing Ruby core libraries code shows, that lots of methods have no more than 3-4 lines. This code is personification of dryness.

Have in mind that Ruby is very brief language, though. In C# this number should be probably multiplied by 5-6.

link|flag
vote up 19 vote down

A method should have 11 lines

link|flag
Right on ! ALL my methods have 11 lines – Peter Aug 18 at 13:31
7  
sometimes I have to pad with No Op 11 times. – Dr. UNIX Aug 18 at 13:43
2  
My guitar amp goes to eleven. – Robert Harvey Aug 18 at 21:39
1  
Why not just make each method 10 lines and write 10% more methods? – Aardvark Aug 19 at 15:28
1  
So a method should only have 3 lines? (I presume 11 is binary?) – Dan Diplo Sep 9 at 16:49
show 3 more comments
vote up 8 vote down

42 would be best

link|flag
I'm not sure that "How many lines should a method typically have?" counts as the Ultimate Question of Life, the Universe, and Everything. en.wikipedia.org/wiki/The_Answer_to_Life,the_Universe,_and_Everything#Answer_to_Life.2C_the_Universe.2C_and_Everything.2842.29 – Martin Brown Aug 18 at 14:20
7  
I prefer to write methods with a number of lines equal to the air speed velocity of an unladen swallow, but you got my +1 anyway. – orsogufo Aug 18 at 15:28
@Martin Brown - it comes up frequently enough... – Antony Aug 18 at 23:59
@orsogufo - That's all well and good, but you didn't specify - African or European? – Jason Sep 9 at 15:56
vote up 2 vote down

A method should be as long as a piece of string. A very concise piece of string, that is.

link|flag
vote up 7 vote down

You shouldn't judge a method's bloat by its LOC (lines of code) but rather the Cyclomatic Complexity, or the number of possible paths through it. The rationality behind this is to both keep the method in line with its goal and to minimalize the number of unit tests you will need to cover it.

You really want to avoid any kind of metric or practice of development based on the number of lines of code. It was an old and flawed way of measuring productivity. You can do a great deal in 1 line of code in some languages / patterns while others may take a great deal more. The best bet in development is to ensure that your code is organized into specific tasks, broken up into clean and percise methods for accomplishing fragments of those tasks.

Having a lesser number of lines of code may not always be the "best" approach. The utlimate goal is to keep your development both functional and understandable. If you crunch a lot logic into one line to "conserve" LOC, you are likely making the readability of your code much more strenous.

link|flag
vote up 0 vote down

Read Clean Code by Uncle Bob. Ideally, 1 maybe 2. The idea is to make them as small as possible, and to make them do only one thing.

link|flag
You've got to be kidding. Hello. World. – Robert Harvey Aug 18 at 21:52
While reading Clean Code, I had several "You've got to be kidding" moments. I believe the idea is to set your goals as close to unattainable as possible, to keep you from becoming lazy and being "ok" with big methods. And we all know we are lazy. – Aaron Daniels Aug 19 at 13:48
The best programmers are the laziest, i.e., they find the most efficient way to do something. Which, paradoxically, does not always mean the least lines of code in a method. Remember that you're writing a method to do something efficiently, but just as importantly you're writing it so the next guy who has to maintain it can understand it. (That poor slob might by you several months later.) – Loadmaster Sep 9 at 16:48
vote up 1 vote down

Stanford professor Mehran Sahami says that a method body should typically be between 1 and 15 lines of code.

link|flag
vote up 0 vote down

I try to have my functions fit in the IDE window. Sometimes, you'll get the pleasure to work on a huge method that spans 1000's of lines. I will break it down to multiple methods and the method signatures will begin to read like english. I would suggest Refactoring by Fowler . He covers this and many similar code structure issues.

link|flag
vote up 0 vote down

Put your hand over your screen, if you cannot cover your method entirely, then it has too many lines.

link|flag
1  
I'm a gorilla. I have very long methods. – mmyers Aug 18 at 16:38
vote up 0 vote down

I normally keep a thumbrule like this,

A method contains more than 10 lines is a possible candidate of dealing with more than one micro unit of work

Def: micro unit of work => refer to Robin Day's response.

link|flag
vote up 0 vote down

Pshaw. Everyone knows that the optimal number of lines is 47.

(cites obscure Star Trek reference).

link|flag
vote up 0 vote down

21 - Blackjack!

link|flag
vote up 0 vote down

A good rule of thumb is to make the method about one page long, i.e., short enough to see in totality in one viewable frame. Anything longer than two or three pages is too spread out and requires too much scrolling back and forth to comprehend on sight.

Of course, how many lines you can get into a single "page" varies from environment to environment, which can be anywhere from 20 to 100 lines.

link|flag
vote up 1 vote down

It should fit in my head.

That is to say, if I put my head against the monitor, the method should not be seen as extending past the boundaries of my head.

--Author Unknown.

Less humorously...

  • Typically I like my functions to be coherent. A function should not do two dissimilar things.

  • When a block is replicated more than 2 times, it gets put into its own function.

  • Flow control type functions max out around 50-60 LOC

  • More 'functional' functions are under 20 LOC.

It also depends to a certain degree on the language being used.

link|flag

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