vote up 14 vote down star
4

Related:

I mostly use C, however this question is language agnostic. Its also subjective, so I'll tag it as such.

Many individual projects set their own various coding standards, a guide to adjust your coding style. Many enforce an 80 column limit on code, i.e. don't force a dumb 80 x 25 terminal to wrap your lines in someone else's editor of choice if they are stuck with such a display, don't force them to turn off wrapping. Both private and open source projects usually have some style guidelines.

My question is, in this day and age, is that requirement more of a pest than a helper? Does anyone still login via the local console with no framebuffer and actually edit code? If so, how often and why cant you use SSH?

I help to manage a few open source projects, I was considering extending this limit to 110 columns, but I wanted to get feedback first. So, any feedback is appreciated.

I can see the need to make certain OUTPUT of programs (i.e. a --help /h display) 80 columns or less, but I really don't see the need to force people to break up code under 110 columns long into 2 lines, when its easier to read on one line.

I can also see the case for adhering to an 80 column limit if you're writing code that will be used on micro controllers that have to be serviced in the field with a god-knows-what terminal emulator.

Beyond that, what are your thoughts?

Edit:

This is not an exact duplicate. I am asking very specific questions, such as how many people are actually still using such a display. I am also not asking "what is a good column limit", I'm proposing one and hoping to gather feedback. Beyond that, I'm also citing cases where the 80 column limit is still a good idea.

I don't want a guide to my own "c-style", I'm hoping to adjust standards for several projects. If the duplicate in question had answered all of my questions, I would not have posted this one :) That will teach me to mention it next time.

Edit 2

question |= COMMUNITY_WIKI

flag
let's call them "related" and everyone should be happy. already voted to close, though. – Can Berk Güder Apr 14 at 9:46
Perhaps this should be community wiki... – DR Apr 14 at 9:47
Edited to make it CW. – Tim Post Apr 14 at 10:09

15 Answers

vote up 35 vote down check

The issue is not the output device - the issue is readability. Take a look at a printed book - these have evolved over centuries to be very readable. You will find that the page width is much less than 80 characters, probably round about 60.

link|flag
3  
Indeed, but code is not meant to be read the way we read sentences. If you have a long descriptive method name having parameters with descriptive variable names, 80 characters won't be enough. – Jon Limjap Apr 14 at 9:43
Well I do have methods with descriptive names - I don't see that thes ehave to be long though, given the class they are members of provides context. My own standard is to enforce a right margin at 78 characters. – Neil Butterworth Apr 14 at 9:45
1  
I guess you haven't tried TDD, or DDD for that matter, yet ;) – Jon Limjap Apr 14 at 9:47
2  
@Jon Limjap: Simply break up such lines into multiple lines. The compiler generally doesn't care, but human readers (the most important when maintainability and cost-of-code are concerned) usually will. – peSHIr Apr 14 at 9:51
1  
Donald Knuth says page text width is based on average words not average characters. And he explains what makes the lines readable and not distractingly short or long. Code on the other hand is mostly for the compiler and your fellows. Find out if your fellows use an 80column terminal, if not, adjust accordingly. – dlamblin Jul 31 at 21:26
show 4 more comments
vote up 3 vote down

I think it is utterly ridiculous and against general principles of usability and accessibility, which mandate that the user agent should decide how the content is displayed. The fact that most user agents are rubbish at displaying wrapped code does not mean that we should play along and split lines according to some random rule; instead, make the user agent better.

Consider, of all things, VBA code:

sSQL = "SELECT unicorns FROM "
sSQL = sSQL & "TheTableOfMythicalBeasts "
sSQL = sSQL & "WHERE horns = 1 "
sSQL = sSQL & "ORDER BY beauty DESC "

Also written as:

sSQL = "SELECT unicorns FROM " _
       "TheTableOfMythicalBeasts " _
       "WHERE horns = 1 " _
       "ORDER BY beauty DESC "

Or just plain written as:

sSQL = "SELECT unicorns FROM TheTableOfMythicalBeasts WHERE horns = 1 ORDER BY beauty DESC "

There is massive danger of a bug occurring because I forgot a space at the end of the first or second statement, but nearly none in the single line version. The environment should figure out a sensible way to display a single statement so that it is readable; as with HTML, the content provider (coder) is usually the worst person to presume what is right for another user. I agree with coding for readability in terms of variable names and indentation, but column width is a personal preference best chosen by the recipient, as with font face/size.

link|flag
And yes, I know there is a horizontal scrollbar in the third version - boo hoo, it's a display problem, not a coding problem. – Alistair Knock Jul 31 at 21:19
vote up 0 vote down

In Python you are more or less forced to use the 80 characters limit - if you want to develop software like Python itself or frameworks (e.g. Django).

Python Enhancement Proposal number 8 (PEP-8), "Style Guide for Python Code" says:

Limit all lines to a maximum of 79 characters.

It mentions the side-by-side windows argument.


I am using a little less, 77 characters, no matter the language: Perl, C++, C#, VB.NET, Python. One reason is to be able to use a large font without the need to scroll.

link|flag
vote up 0 vote down

The main argument for the 80 column standard is readability. But I don't agree that shorter lines necessarily make code more readable if you read code on a screen. Printing code on paper (does anybody do this to any extent anymore?) is a completely different discussion.

I've seen unwanted behavior among programmers that want to cram full statements on single lines, in order to get nice predictable indentation. Giving variables extremely short names is only one example. I'd prefer giving programmers larger freedom when it comes to the number of columns if they instead use descriptive naming.

Another common argument is that short expressions are easier to understand, but that does not necessarily imply short lines. That is rather because the expression is simple.

If I had to set a limitation I would be quite generous and try to encourage other readability features also.

link|flag
vote up 2 vote down

Yes, it's still useful. For reading code, I prefer to have a wide-screen pivoted by 90°, and everything > 80-90 lines of code becomes unreadable then. So you should keep this in mind. Moreover, I've seen already quite a few people with a dual-screen setup where they have one large screen and a smaller one next to it, tilted by 90° -- this setup is not as unpopular as one might think.

The other thing is printing code, not that you would do it often, but for debugging some more serious problems it can be really useful.

link|flag
vote up 6 vote down

80-columns makes a lot of sense in any project. It makes it much more easier to have two related file windows opened side by side. Examples: viewing diffs and .h/.cpp pairs.

link|flag
vote up 3 vote down

Source code does not appear only in 16/9 HD screens. It may be:

  • printed in portrait mode,
  • quoted in a book,
  • displayed on a blog or on Stackoverflow.

I hate horizontal scrollbars which prevent me from reading a portion of code as a whole.

link|flag
So are you advocating always writing for the edge case of blog posts, (to which this question seems to be leaning, ie general practice), or suggesting that people should reformat code when blogging/posting? – Simeon Pilgrim Apr 14 at 10:10
1  
The least would be to reformat when blogging/posting. Moreover, I think it doesn't hurt if this becomes a day to day practice. Nevertheless I am not an extremist. On this kind of subjects, consistency among the team is more important than possibility of being published. – mouviciel Apr 14 at 10:27
@mouvicial: well said – dfa Apr 14 at 10:31
@dfa: agreed, well said mouvicial – Simeon Pilgrim Apr 15 at 20:49
vote up 0 vote down

I've always done 80 (header files) or 100 (source files) when I was developing in C and C++.

For some reason, with C# I tend to need more space, therefore for now I have settled to 120 columns.

link|flag
vote up 5 vote down

80 characters a line, is a good guideline to aim at, for the readability and ergonomic reasons already mentioned. Always defer to common sense !

link|flag
vote up 1 vote down

If you sit before a Full-HD monitor then 80 characters limitations is nonsense.

Especially if you follow the good style of self-explanatory names for variables and method names you will run into the problem that you code will grow down like crazy.

80 characters maybe good for pocket books to read on the way, but not for code.

My personal opinion that the reasonable width of code is up to ~1400-1500 pixels at normal font size. After that readability goes backwards.

link|flag
I often grab my netbook (1024 pixels wide) and review some code while on a go / in a coffee shop. People STILL use lower resolutions then fullHD, really. – kender Apr 14 at 11:44
I haven't seen a notebook with a res lower than 1280x800 for ages. A for the netbooks, well, you may of course try to use them but in my opinion they are quite useless toys. – User Apr 14 at 12:11
1  
I gotta strongly disagree. There's a diffrence in carrying a 1kg "toy" vs 4kgs "super-duper notebook" if you're on the go. Doesn't bother me much if I'm just traveling between an airport and hotel, but in any other case, light netbook is a win for me. Other thing is, you often don't want only your code on a screen, sometimes the browser window (if your application is webby, or you're looking at bugs database, or browsing docs). Sometimes you want your screen divided between code editor and something else. – kender May 13 at 23:09
I just read today something about 30% of netbooks being return back to stores because the sellers exaggerate their functionality and position them wrongly in general. – User May 13 at 23:37
vote up 2 vote down

I think that the fact that we are now using fonts that are sizeable (albeit more often than not fixed-width) have made the 80 column limit irrelevant.

Not only that, but certain code readability standards will suffer from such limits, e.g., naming conventions wherein method names that fully describe what the method is doing without any sort of abbreviation (think AssignNumberToCustomerAndSetOrderStatus) eats up 80 characters quite fast.

Column width is still relevant, of course, to terminal-based languages such as COBOL, but other than in that case I can't think of enough reason to stick to the 80 character limit.

link|flag
3  
AssignNumberToCustomerAndSetOrderStatus is a horrible name. Method names should never use the word "and." – Kevin Panko Jul 22 at 16:56
1  
Indeed... it means it's doing more than one thing. Good call Kevin. ;) – Jon Limjap Jul 23 at 3:05
vote up 0 vote down

Its probably best to be pragmatic and only enforce an 80 column limit if it makes sense to do so...ie if a significant number of people need it to be at that limit. These days with large monitor sizes I don't think we need to be pedantic about 80 columns unless there was a specific need for it.

link|flag
vote up 7 vote down

While the physical limitations of green screen terminals are largely gone, but was never the best argument for limiting line length.

The best comes from the world of print, it is hard to read very long lines of text, as the lines get longer there is an increased tendency for your eyes to skip up or down a line. This is why newspapers print in columns, and why books use relatively small page sizes despite this requiring more binding.

Short expressions are easier to understand; too much indentation is harder to follow.

Remember the most important consumer of the code is whomever will read the code, and he might just know where you live.

link|flag
vote up 7 vote down

Very long lines are still hard to read - it's annoying ot have to scroll across the page, but that's all. For this reason I do stick to "sensible" line lengths, but not to a hard and fast rule. 110 would seem reasonable to me, why not try it out on one project first before rolling it out to all of them?

link|flag
vote up 0 vote down

It completely depends on the monitor you use. We have a 100 column standard. Which works great for our monitors.

You could argue if longer lines add any significant value. But you must not forget that this enables the use of longer (most of the time more descriptive) identifier lengths.

link|flag

Your Answer

Get an OpenID
or

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