coding styles - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T17:18:18Z http://stackoverflow.com/feeds/question/810214 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/810214/coding-styles 0 coding styles Babiker 2009-05-01T04:42:21Z 2009-05-01T08:05:34Z <p>In no way shape or form am i advertising/promoting my programming style, but as far as 'multiple variable declarations' are concerned, <strong>which case is more acceptable professionally and commonly</strong>:</p> <p>case 1:</p> <pre><code>private $databaseURL = "localhost" ; private $databaseUName = "root" ; private $databasePWord = "" ; private $databaseName = "AirAlliance"; </code></pre> <p>case 2:</p> <pre><code>private $databaseURL = "localhost"; private $databaseUName = "root"; private $databasePWord = ""; private $databaseName = "AirAlliance"; </code></pre> <p>The reason i like case 1 is because i can skim though it and see that all is correct way faster than case 2. Also i can visually get familiar with variable names witch makes it faster to work with them l latter on the program.</p> http://stackoverflow.com/questions/810214/coding-styles/810216#810216 14 Answer by Joe Koberg for coding styles Joe Koberg 2009-05-01T04:44:00Z 2009-05-01T04:44:00Z <p>Whichever style the project is already using, so you dont end up spending all day "fixing" every file you touch.</p> http://stackoverflow.com/questions/810214/coding-styles/810222#810222 5 Answer by harto for coding styles harto 2009-05-01T04:47:19Z 2009-05-01T04:47:19Z <p>Case 2. When you add a new variable to your "group", or add/remove a character on one of those lines, you won't have to spend time fiddling around trying to make things line up.</p> http://stackoverflow.com/questions/810214/coding-styles/810224#810224 3 Answer by zombat for coding styles zombat 2009-05-01T04:47:35Z 2009-05-01T04:47:35Z <p>Interesting question. As far as I'm concerned, there's no good reason to use case 1. I've never seen that style before, except possibly in config files, and it costs extra time to format your code properly. As soon as you change the contents of the variable, you have to reset your semi-colon as well.</p> <p>It only works if you use spaces as well... anyone using tabs might have different tab stops set, so it will look completely different opened in another editor.</p> <p>I think the advantage of readability you mention is somewhat offset by the extra effort required to write it.</p> http://stackoverflow.com/questions/810214/coding-styles/810230#810230 12 Answer by jeremy Ruten for coding styles jeremy Ruten 2009-05-01T04:49:43Z 2009-05-01T04:49:43Z <p>case 1.5:</p> <pre><code>private $databaseURL = "localhost"; private $databaseUName = "root"; private $databasePWord = ""; private $databaseName = "AirAlliance"; </code></pre> <p>I don't think aligning the semicolons makes it any more readable, it just makes it annoying to change the value of one of the strings and then have to add or delete spaces to line up the semicolons all over again.</p> <p>In this case, it looks like the variable names are unlikely to change, so it should be OK to line up the equals signs. If it were possible that the variable names would change, however, I would go with case 2 because (again) it would be annoying to have to line everything up again. (Imagine the work involved in simply adding a new variable called <code>$databaseLongVariableName</code>.)</p> http://stackoverflow.com/questions/810214/coding-styles/810232#810232 0 Answer by zachrrs for coding styles zachrrs 2009-05-01T04:51:49Z 2009-05-01T04:51:49Z <p>Aligning the semicolons seems like wasted time to me, unless your IDE/text editor can do it for you. Especially if you later add another entry longer than the previous ones; you'll have to realign <em>all</em> of them.</p> http://stackoverflow.com/questions/810214/coding-styles/810238#810238 0 Answer by Esti for coding styles Esti 2009-05-01T04:53:57Z 2009-05-01T04:53:57Z <p>If there is an accepted "Pretty Print" function, I use that. Although it is seldom 100% what you like, it means that the coding style remains consistent, which in the end makes it more maintainable.</p> <p>If there is no such function, I follow the existing style.</p> http://stackoverflow.com/questions/810214/coding-styles/810241#810241 0 Answer by Babiker for coding styles Babiker 2009-05-01T04:56:20Z 2009-05-01T04:56:20Z <p>I just fired up my editor and it just hit me. all the reasons i like case 1 for are in syntax highlighting without wasting time. </p> http://stackoverflow.com/questions/810214/coding-styles/810244#810244 4 Answer by alex for coding styles alex 2009-05-01T04:57:22Z 2009-05-01T04:57:22Z <p>If you change all their alignments when you add a new variable, then any diff tool will show up multiple changes there. Just a thought.</p> <p>Also, I've done this once. It became a pain in the ass when I had to add a variable that was longer. Padding out all the existing ones with spaces to match turned me off this technique. </p> http://stackoverflow.com/questions/810214/coding-styles/810291#810291 0 Answer by Sujoy for coding styles Sujoy 2009-05-01T05:28:16Z 2009-05-01T05:28:16Z <p>case 2. with anything else your version control will go crazy everytime you re-adjust the spacing. besides with IDEs that has highlighting and some also show a variable listing, its really a waste of time to align '=' and ';' in my opinion.</p> http://stackoverflow.com/questions/810214/coding-styles/810300#810300 0 Answer by gbarry for coding styles gbarry 2009-05-01T05:32:46Z 2009-05-01T05:32:46Z <p>Case 2. If I leave out a semicolon, I have a program that tells me so. It's the <em>compiler</em>.</p> http://stackoverflow.com/questions/810214/coding-styles/810387#810387 0 Answer by Steve for coding styles Steve 2009-05-01T06:21:44Z 2009-05-01T06:21:44Z <p>Use case 2. That is far more standard: <a href="http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml" rel="nofollow">Google C++ Style</a></p> <p>Really you shouldn't even concern yourself with this. Your editor should automatically autoformat your code. Try ctrl+shift+F in Eclipse.</p> http://stackoverflow.com/questions/810214/coding-styles/810456#810456 2 Answer by Ciaran McNulty for coding styles Ciaran McNulty 2009-05-01T06:59:53Z 2009-05-01T06:59:53Z <p>It's very tempting to nicely align stuff, I used to align my accessors in PHP as so</p> <pre><code>function getName() { return $this-&gt;name; } function getAge() { return $this-&gt;age; } function getHeight(){ return $this-&gt;height; } </code></pre> <p>The problem comes when you add in a longer line:</p> <pre><code>function getName() { return $this-&gt;name; } function getAge() { return $this-&gt;age; } function getNiNumber(){ return $this-&gt;ni_number; } function getHeight(){ return $this-&gt;height; } </code></pre> <p>If I edit the three other lines, then when I commit my change it makes it harder to see who wrote a particular line, and in which revision they did it.</p> http://stackoverflow.com/questions/810214/coding-styles/810590#810590 0 Answer by Ryaner for coding styles Ryaner 2009-05-01T08:05:34Z 2009-05-01T08:05:34Z <p>Going with what ever the project you are working on is the best option. (If the project doesn't have a set of coding guidelines, spending five minutes to define them is highly recommended).</p> <p>A lot of the larger programs have tools which scan the code looking for things to sort and clean. Adding whitespace at the end of the variable <i>could</i> affect some of them. </p> <p>Also regarding tabs, I've never worked on a project that didn't determine the tab spacing for the editing. You can always use your personal one and have a precommit hook to edit the file before it goes in, but messing with tab spacing will annoy people no end.</p>