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?
|
6
|
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? |
||||||||||||||||||
|
closed as exact duplicate by Bill the Lizard♦ Oct 22 at 14:49 |
|
|
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 |
||||||||||||||
|
|
|
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. |
||||||||||||
|
|
|
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. |
||||||
|
|
|
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. |
|||
|
|
|
|
As a ball park I get worried if you ever have to scroll to read it. |
||||||||||
|
|
|
it should be not more than one page. |
||||||||||||||
|
|
|
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). |
||||
|
|
|
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.
Is one item And
Is one item, as most programmer now what it means But
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.
|
||||||||||||||||
|
|
|
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. |
|||
|
|
|
|
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 |
|||
|
|
|
|
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. |
|||
|
|
|
|
A method should have 11 lines |
||||||||||||||||||
|
|
|
42 would be best |
||||||||||
|
|
|
A method should be as long as a piece of string. A very concise piece of string, that is. |
|||
|
|
|
|
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. |
|||
|
|
|
|
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. |
||||||
|
|
|
Stanford professor Mehran Sahami says that a method body should typically be between 1 and 15 lines of code. |
|||
|
|
|
|
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. |
|||
|
|
|
|
Put your hand over your screen, if you cannot cover your method entirely, then it has too many lines. |
||||
|
|
|
I normally keep a thumbrule like this,
Def: micro unit of work => refer to Robin Day's response. |
|||
|
|
|
|
Pshaw. Everyone knows that the optimal number of lines is 47. (cites obscure Star Trek reference). |
|||
|
|
|
|
21 - Blackjack! |
|||
|
|
|
|
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. |
|||
|
|
|
|
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...
It also depends to a certain degree on the language being used. |
|||
|
|