coding styles - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T17:18:18Zhttp://stackoverflow.com/feeds/question/810214http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/810214/coding-styles0coding stylesBabiker2009-05-01T04:42:21Z2009-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#81021614Answer by Joe Koberg for coding stylesJoe Koberg2009-05-01T04:44:00Z2009-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#8102225Answer by harto for coding stylesharto2009-05-01T04:47:19Z2009-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#8102243Answer by zombat for coding styleszombat2009-05-01T04:47:35Z2009-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#81023012Answer by jeremy Ruten for coding stylesjeremy Ruten2009-05-01T04:49:43Z2009-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#8102320Answer by zachrrs for coding styleszachrrs2009-05-01T04:51:49Z2009-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#8102380Answer by Esti for coding stylesEsti2009-05-01T04:53:57Z2009-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#8102410Answer by Babiker for coding stylesBabiker2009-05-01T04:56:20Z2009-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#8102444Answer by alex for coding stylesalex2009-05-01T04:57:22Z2009-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#8102910Answer by Sujoy for coding stylesSujoy2009-05-01T05:28:16Z2009-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#8103000Answer by gbarry for coding stylesgbarry2009-05-01T05:32:46Z2009-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#8103870Answer by Steve for coding stylesSteve2009-05-01T06:21:44Z2009-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#8104562Answer by Ciaran McNulty for coding stylesCiaran McNulty2009-05-01T06:59:53Z2009-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->name; }
function getAge() { return $this->age; }
function getHeight(){ return $this->height; }
</code></pre>
<p>The problem comes when you add in a longer line:</p>
<pre><code>function getName() { return $this->name; }
function getAge() { return $this->age; }
function getNiNumber(){ return $this->ni_number; }
function getHeight(){ return $this->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#8105900Answer by Ryaner for coding stylesRyaner2009-05-01T08:05:34Z2009-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>