vote up 2 vote down star
2

Possible Duplicates:
While coding, how many columns do you format for?
Is there a valid reason for enforcing a maximum width of 80 characters in a code file, this day and age?
What is a sensible maximum number of characters per line of code?

My current project has this and I think the code looks disgusting when you have to break up lines to meet this limit.

flag

57% accept rate
1  
Ya never know. You might need to go back to card stacks and think of all the time you would save ;o) – wcm Dec 3 '08 at 19:00
Dupe: stackoverflow.com/questions/131468/… – EBGreen Dec 3 '08 at 19:04
apologize for the dupe – Holograham Dec 3 '08 at 19:19
Programmers get pretty childish about this (myself included). But something has to give - either those who prefer to widen code across their 24" screen in 8pt type have to artificially shorten their lines, or those who prefer multiple files side-by-side have to scroll or wrap, which is unreadable. – Steve 'onebyone' Jessop Dec 3 '08 at 19:33

closed as exact duplicate by finnw, rossfabricant, Ólafur Waage, sth, John Saunders Oct 4 at 17:37

18 Answers

vote up 8 vote down

No, but developers are trusted not to write code that will require horizontal scrolling unless absolutely necessary. This makes scanning through code far easier.

link|flag
This - I used to limit my Turbo Pascal lines to 80 characters... but that was because the line would wrap otherwise, and it would look like crap when printed. It's 2008 - this policy is silly. – Greg Hurlman Dec 3 '08 at 19:02
I completely agree with you Dan. 80 characters is a little small, but I hate scrolling. It is so much easier to read code on multiple lines than it is to scroll the window to read a line that is 300 characters long. – Kevin Dec 3 '08 at 19:06
vote up 7 vote down

80 characters per line only made sense when we were all working on CRTs and in my opinion it makes code very hard to read and encourages the use of short, cryptic variable names.

A standard should be set though as really long lines are also hard to read.

To define a more reasonable standard, use the dev machine with the lowest resolution and determine a visible line length in your company's IDE.

If it is common practice to print out source code (for documentation?) then you should settle on a standard that fits on a printed page with a common font at a readable size. 132 is common.

link|flag
vote up 6 vote down

Yes, we do, and I think its an excellent idea. It makes it easier to scan through code and you can fit two columns of code on the screen.

link|flag
I find it makes it harder to scan through code. You end up with less code on the screen and you have to scroll vertically rather than horizontally to see what you need. – Rob Prouse Dec 3 '08 at 19:50
1  
Still books are usually printed in portrait rather than landscape. Why is that? – JesperE Dec 4 '08 at 8:42
1  
@Jesper Interesting point. When I read your comment, I started imagining programming books printed in landscape, and it seemed like a good idea :D because there are always awkward code listings that have to use multiple lines due to the width of the page. For non-programming books it might be a bad idea, because it's really hard to read long lines of prose (and useless for most poetry). – allyourcode Apr 19 at 18:55
I know that there has been studies which show that there is an optimal line-length for reading text. Longer lines makes it more difficult to jump from line-to-line. I'm sure that applies to some extent to programming as well. – JesperE Apr 20 at 6:34
vote up 3 vote down

put 2 buttons on your IDE's main page that say "My Way" and "Their Way". The macros enable word wrap and shrink the editor window to conform to the 80 columns -- The "My Way" macro tuns off word wrap and sets the window to maximized --

Of course, they may choose to put a button on your IDE that says "The Highway" -- lol ...

--- before I get flamed, guys, it was a joke. :)

link|flag
lol. I love this subversive suggestion. I have to figure out how to do this in Emacs! – allyourcode Apr 19 at 18:57
vote up 2 vote down

Like most things subjective, it depends. For instance, when developing without an IDE (and yes, this is still done), or with C/C++ and header files, I really like being able to get two columns of text side by side in a readable font. It can also make diffs of code much easier to handle.

link|flag
vote up 2 vote down

I enforce this for some of my java projects. Even on my fairly high-res display, by the time I get eclipse running with all of its window garbage while leaving a bit of room for at least accessing terminals, etc... there's not a lot left for text.

I work on a ruby project that's a lot more lenient, but even there I've got lines that are just entirely too long. It's just not possible to easily understand code at a glance that's four pages long -- vertically or horizontally.

The interesting thing about horizontal scrolling, though, is that all of the context completely disappears when you scroll (or you wrap it and it just gets extra confusing).

link|flag
On a 1680x1050 screen, Eclipse in the default configuration leaves more than enough room for 120 characters in the editor. And Java tends to end up with longer variable names because that is its nature, so long lines are very easy to create. – JeeBee Dec 3 '08 at 19:12
But indeed, I think the Eclipse editor should wordwrap at your defined column, rather than have the horizontal scroll. I think that's a preferable tradeoff to scrolling. – JeeBee Dec 3 '08 at 19:13
vote up 1 vote down

No they don't and I would actively challenge any such restriction at my place of employment.

link|flag
vote up 1 vote down

No, I've heard of it before. But that was in the mid 90's and it was an old idea then.

My god, I thought I was anal! ;-)

link|flag
vote up 1 vote down

The reason for this is that the human eye is far better at moving vertically a lot than keeping the same level horizontally. This is also the reason a lot of print magazines/newspapers have a very narrow column width: it's just far easier to read.

link|flag
vote up 0 vote down

No, we have wide screen monitors for a reason.

link|flag
vote up 0 vote down

Heck no!

Buy high resolution monitors (20" LCD at 1600x1200 at minimum), then buy another monitor!

Just ask Joel, he'll tell you every programmer needs dual screens.

link|flag
This is especially fun when you're onsite with a customer, you need to take a look at some code on your laptop, and you discover you're screwed, because "this is 2008, nobody would ever have less screen than 2 1600px wide monitors", so all the lines are 200 characters long. – Steve 'onebyone' Jessop Dec 3 '08 at 19:38
Then you don't have the right laptops. Check out Dell Precision M4400, you can get 1920x1200 on a 15" screen. – Pyrolistical Dec 4 '08 at 18:14
vote up 0 vote down

Not as a requriement, since this is a restriction neither for display nor for printing source code.

However, we all do use a visual "warning" (the column indicator of Visual Assist) at 80 characters to give a "soft push" towards shorter lines. Works very well for us.

Note: Shorter lines also help a lot with diffing code, where yo usee it side-by-side.

link|flag
vote up 0 vote down

It's important to have a line limit so you can print the code on one page. Sometimes you just need to be able to print it out.

link|flag
vote up 0 vote down

tabs are a code smell - i doubt i ever go over 80 chars in python. C++ can be pretty verbose though.

link|flag
vote up 0 vote down

I've been figuratively hit over the head during code reviews when my lines are longer than 80 char. Some times, I would go back and find a better way to do the same thing on multiple lines; however, many times, when I brought my line down to <= 80 char, I think the code ended up being much less readable. The problem was particularly bad when long consecutive lines looked similar, because the additional lines would really break things up visually.

I definitely learned something about long lines of code during those reviews, but if I were in charge, I'd allow sensible, minor violations of any N char rule. Maybe we need to revise N for the 21st century.

link|flag
vote up 0 vote down

This was much easier to do with shorter identifiers, but with many libraries using fairly long function names, I've foregone the 80-column rule. I still try not to be extravagant, readability does suffer beyond a moderate length. But consider how much tangled mess it would take to overshoot 80 columns with 2-space indent and 8-character-maximum identifiers.

Personally, I would like to see this simply handled intelligently by editor/ide setups. Wrap code lines that go past the window, but do so in a way that resembles what humans do when breaking up the lines - indent indicatively. I don't like having to juggle wordwrap manually when adding or removing stuff, and will normally only break up lines with long function calls if doing so shows a clear grouping of parameters.

link|flag
vote up 0 vote down

79 char limit for me. 80th char is reserved for $ when I'm using ed. (Yes, I'm serious)

link|flag
vote up -1 vote down

Ugh, no. I'm not working at an old Unix teletype system, why should I write code like I am.

link|flag

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