Coding standards and line length - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T22:58:12Z http://stackoverflow.com/feeds/question/566082 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/566082/coding-standards-and-line-length 5 Coding standards and line length Clayton 2009-02-19T16:24:33Z 2009-02-19T22:59:24Z <p>Every coding standard I've ever seen has a recommended or absolute limit on number of characters in a line. There are various ways of working within this limitation, but I've not seen any specific guidance in this regard.</p> <p>Obviously, if possible, don't write excessively long lines.</p> <p>But what if that's not practical? How should long lines be handled?</p> <p>Here are a couple of examples</p> <pre><code>if ($Stmt = $Mysqli-&gt;prepare("SELECT color, pattern, size, manufacturer, mfgSku, storeLocation, aisle, status FROM tblItems WHERE ourSku = ?")) { </code></pre> <p>or</p> <pre><code>$flavors = array ('chocolate', 'strawberry', 'vanilla', 'cookie dough', 'chocolate chip', 'mint chocolate chip', 'rocky road', 'peach', 'fudge brownie', 'coffee', 'mocha chip'); </code></pre> <p>or</p> <pre><code>$Stmt-&gt;bind_result( $this-&gt;_firstName, $this-&gt;_lastName, $this-&gt;_BillToAddress-&gt;address1, $this-&gt;_BillToAddress-&gt;address2, $this-&gt;_BillToAddress-&gt;city, $this-&gt;_BillToAddress-&gt;state, $this-&gt;_BillToAddress-&gt;zip, $this-&gt;_BillToAddress-&gt;country, $this-&gt;_email, $this-&gt;_status, $this-&gt;_primaryPhone, $this-&gt;_mobilePhone ); </code></pre> <p>In each of these examples, the indenting of lengthy code is different. Is there a better or more "standard" way of doing this? Should extra lines always be indented the same way. Or is this OK?</p> http://stackoverflow.com/questions/566082/coding-standards-and-line-length/566090#566090 5 Answer by Adam Davis for Coding standards and line length Adam Davis 2009-02-19T16:26:18Z 2009-02-19T16:26:18Z <p>There is a pattern you can see in each example - they are indented to the first parameter of the function. This is a good standard to follow as it transposes the data from horizontal to vertical and the columns allow easy reading.</p> <p>For other line length issues, such as lengthy computations, the preferred method is to break it down. Calculating the julian date, or easter is done in several steps instead of one long calculation.</p> <p>-Adam</p> http://stackoverflow.com/questions/566082/coding-standards-and-line-length/566095#566095 0 Answer by Jonathan Sampson for Coding standards and line length Jonathan Sampson 2009-02-19T16:27:25Z 2009-02-19T16:27:25Z <p>I'm not aware of any standard, as it would be tough to say. For those of us on larger monitors, we can view more horizontal code than others on smaller monitors. I generally try to build long strings sequentially via .= (PHP) when it's necessary, and as your code demonstrated I split lengthy arrays arbitrarily onto new lines depending on how many characters exist in that particular line.</p> http://stackoverflow.com/questions/566082/coding-standards-and-line-length/566097#566097 3 Answer by Oliver N. for Coding standards and line length Oliver N. 2009-02-19T16:27:58Z 2009-02-19T16:27:58Z <p>I don't think one should intentionally have long lines but, at the risk of offending many, I suggest that line length really isn't that important anymore. </p> <p>Vim and emacs handle long lines pretty well, and they're installed on almost every Unix box. On Windows, you'll almost always be within a GUI text editor. I do think your <code>$Stmt-&gt;bind_result</code> style is the easiest to read, but if you just need to load a bunch of mostly static information in one statement, I have no problem with a 1000 character line.</p> http://stackoverflow.com/questions/566082/coding-standards-and-line-length/566101#566101 5 Answer by Allain Lalonde for Coding standards and line length Allain Lalonde 2009-02-19T16:28:17Z 2009-02-19T16:28:17Z <p>Context dictates which one you pick. Ultimately you're writing code to be read by a human being. If indenting a block of code differently would make it easier to read then do it.</p> http://stackoverflow.com/questions/566082/coding-standards-and-line-length/566103#566103 4 Answer by annakata for Coding standards and line length annakata 2009-02-19T16:29:03Z 2009-02-19T16:29:03Z <p>Door number 3. If you can't do it on one line, do it on one line per item, anything else obfuscates the items after the first on the line and is horrible to read. Consistent indentation matters too.</p> <p>Fwiw, I think this is old hat in a day and age where most programmers should have dual monitors at a high resolution. The first example looks like it could be one line quite happily.</p> http://stackoverflow.com/questions/566082/coding-standards-and-line-length/566106#566106 1 Answer by Alex McBride for Coding standards and line length Alex McBride 2009-02-19T16:29:49Z 2009-02-19T16:29:49Z <p>This is pretty subjective really, much like the position of brackets, and other coding-styles. The main thing is not so much which style you choose, but that you do choose a style, and that you stick to it throughout the project. </p> <p>For me personally, coming from a Python background, I use a line-length of 79 and a </p> <pre><code>$flavors = array ('chocolate', 'strawberry', 'vanilla', 'cookie dough', 'chocolate chip', 'mint chocolate chip', 'rocky road', 'peach', 'fudge brownie', 'coffee', 'mocha chip'); </code></pre> <p>style. </p> <p>But as I say, in my opinion, it's more important to have a style, rather than to worry about which one.</p> http://stackoverflow.com/questions/566082/coding-standards-and-line-length/566116#566116 0 Answer by Jon Ericson for Coding standards and line length Jon Ericson 2009-02-19T16:32:10Z 2009-02-19T16:42:09Z <p>None of these is that bad... ;-) The first looks like it came from some of my own code.:</p> <pre><code>if ($Stmt = $Mysqli-&gt;prepare( "SELECT color, pattern, size, manufacturer, mfgSku, storeLocation, aisle, status FROM tblItems WHERE ourSku = ?")) { </code></pre> <p>The second example might be better if it were loaded into a configuration file or table.</p> <p>The third is fine, but you could tighten it up a bit with:</p> <pre><code>$Stmt-&gt;bind_result( $this-&gt;_firstName, $this-&gt;_lastName, $this-&gt;_BillToAddress-&gt;address1, $this-&gt;_BillToAddress-&gt;address2, $this-&gt;_BillToAddress-&gt;city, $this-&gt;_BillToAddress-&gt;state, $this-&gt;_BillToAddress-&gt;zip, $this-&gt;_BillToAddress-&gt;country, $this-&gt;_email, $this-&gt;_status, $this-&gt;_primaryPhone, $this-&gt;_mobilePhone ); </code></pre> <p>In prose, lines longer than 80 or so have been shown to be harder to read. 60 or less would be even better. I think code is more like poetry and so line ought to be even shorter if possible. But it's probably not worth spending a huge amount of time worrying about.</p> http://stackoverflow.com/questions/566082/coding-standards-and-line-length/566117#566117 7 Answer by coobird for Coding standards and line length coobird 2009-02-19T16:32:21Z 2009-02-19T16:32:21Z <p>I asked a similar question about where to wrap lines:</p> <ul> <li><a href="http://stackoverflow.com/questions/283465/where-to-wrap-a-line-of-code-especially-long-argument-lists">Where to wrap a line of code, especially long argument lists?</a></li> </ul> <p>Related questions:</p> <ul> <li><a href="http://stackoverflow.com/questions/276022/line-width-formatting-standard">Line width formatting standard</a></li> <li><a href="http://stackoverflow.com/questions/268284/when-writing-code-do-you-wrap-text-or-not">When writing code do you wrap text or not?</a></li> <li><a href="http://stackoverflow.com/questions/110928/is-there-a-valid-reason-for-enforcing-a-maximum-width-of-80-characters-in-a-code">Is there a valid reason for enforcing a maximum width of 80 characters in a code file, this day and age?</a></li> </ul> http://stackoverflow.com/questions/566082/coding-standards-and-line-length/566123#566123 0 Answer by Typeoneerror for Coding standards and line length Typeoneerror 2009-02-19T16:33:37Z 2009-02-19T16:33:37Z <p>I don't mind option 3 too much (1 item per line). Also, personally, I always use wordwrapping, so having code on one line doesn't bother me at all. However, in your second example, with wordwrapping on, that could look like a mess to programmers who do use wordwrapping. Perhaps I am of a smaller group who don't mind long lines. </p> http://stackoverflow.com/questions/566082/coding-standards-and-line-length/566132#566132 0 Answer by Matt Gardner for Coding standards and line length Matt Gardner 2009-02-19T16:34:56Z 2009-02-19T16:34:56Z <p>The best practice typically stems from the purposes behind the line-length restriction itself:</p> <ul> <li>Increase interoperability (between programmers, editing software, etc.)</li> <li>To increase readability and comprehension</li> <li>To increase enjoyment and development speed</li> <li>To increase revenues and profits</li> </ul> <p>Thus, your choices, such as aligning all the stmt parameters, are good if they contribute both to your own future comprehension and that of others on your team.</p> <p>Hope this helps ;) -M</p> http://stackoverflow.com/questions/566082/coding-standards-and-line-length/566140#566140 5 Answer by danieljohnmorris for Coding standards and line length danieljohnmorris 2009-02-19T16:37:56Z 2009-02-19T16:37:56Z <p>My personal preference is the following;</p> <pre> $Stmt->bind_result( $this->_firstName, $this->_lastName, $this->_BillToAddress->address1, $this->_BillToAddress->address2, $this->_BillToAddress->city, $this->_BillToAddress->state, $this->_BillToAddress->zip, $this->_BillToAddress->country, $this->_email, $this->_status, $this->_primaryPhone, $this->_mobilePhone ); </pre> <p>That way the closing bracket and semi-colon are on the same indent as the opening call. Not all languges support having parameters visibly on another line to the method call though...</p> http://stackoverflow.com/questions/566082/coding-standards-and-line-length/566156#566156 1 Answer by Kristo for Coding standards and line length Kristo 2009-02-19T16:43:08Z 2009-02-19T16:43:08Z <p>If you're wrapping more than two items, I prefer a new line for each item like in your third example. It's easier for automated source control tools to merge edits from other people if there's only one item per line.</p> http://stackoverflow.com/questions/566082/coding-standards-and-line-length/566168#566168 4 Answer by El Cristoir for Coding standards and line length El Cristoir 2009-02-19T16:46:09Z 2009-02-19T16:46:09Z <p>An unusual indentation style that I found myself easing into when doing a lot of SQL work was;</p> <pre><code>INSERT INTO someTable ( id, name, age, address1, address2, ) VALUES ( 2, 'Bob' 25, '12 Fake Street', 'The Moon' ) </code></pre> <p>I actually find it much easier to read than any other layout for long parameter lists.</p> http://stackoverflow.com/questions/566082/coding-standards-and-line-length/566298#566298 0 Answer by Pat for Coding standards and line length Pat 2009-02-19T17:23:04Z 2009-02-19T17:23:04Z <p>Follow the standard used by the surrounding code. Don't create your own "standard' no matter how much "better".</p> http://stackoverflow.com/questions/566082/coding-standards-and-line-length/567640#567640 0 Answer by Mark Unwin for Coding standards and line length Mark Unwin 2009-02-19T22:59:24Z 2009-02-19T22:59:24Z <p>Some useful info here <a href="http://framework.zend.com/manual/en/coding-standard.coding-style.html" rel="nofollow">http://framework.zend.com/manual/en/coding-standard.coding-style.html</a></p>