vote up 0 vote down star

In no way shape or form am i advertising/promoting my programming style, but as far as 'multiple variable declarations' are concerned, which case is more acceptable professionally and commonly:

case 1:

private $databaseURL   = "localhost"  ;
private $databaseUName = "root"       ;
private $databasePWord = ""           ;
private $databaseName  = "AirAlliance";

case 2:

private $databaseURL = "localhost";
private $databaseUName = "root";
private $databasePWord = "";
private $databaseName = "AirAlliance";

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.

flag

16% accept rate
I also like case 1 but this question is about as subjective as they come. – paxdiablo May 1 at 4:45
This isn't really limited to PHP... – Andrew May 1 at 4:55
Unless the default values are somehow length-based (e.g. if they were powers of 10), how would the first style allow you to see that everything is correct any faster? – Calvin May 1 at 5:25

13 Answers

vote up 0 vote down

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).

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 could affect some of them.

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.

link|flag
vote up 2 vote down

It's very tempting to nicely align stuff, I used to align my accessors in PHP as so

function getName()  { return $this->name;   }
function getAge()   { return $this->age;    }
function getHeight(){ return $this->height; }

The problem comes when you add in a longer line:

function getName()  { return $this->name;   }
function getAge()   { return $this->age;    }
function getNiNumber(){ return $this->ni_number; }
function getHeight(){ return $this->height; }

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.

link|flag
vote up 0 vote down

Use case 2. That is far more standard: Google C++ Style

Really you shouldn't even concern yourself with this. Your editor should automatically autoformat your code. Try ctrl+shift+F in Eclipse.

link|flag
vote up 0 vote down

Case 2. If I leave out a semicolon, I have a program that tells me so. It's the compiler.

link|flag
vote up 0 vote down

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.

link|flag
vote up 4 vote down

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.

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.

link|flag
Good point about the diff. I wonder if there is an intelligent diff tool out there that will ignore changes to formatting. – Calvin May 1 at 5:27
@Calvin ... perhaps there is, but I do not know of one that exists. – alex May 1 at 5:49
vote up 0 vote down

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.

link|flag
4  
Your editor hit you? I suppose that's what you get for firing it up :-) – paxdiablo May 1 at 5:05
vote up 0 vote down

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.

If there is no such function, I follow the existing style.

link|flag
vote up 0 vote down

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 all of them.

link|flag
vote up 12 vote down

case 1.5:

private $databaseURL   = "localhost";
private $databaseUName = "root";
private $databasePWord = "";
private $databaseName  = "AirAlliance";

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.

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 $databaseLongVariableName.)

link|flag
Exactly, I don't see how aligning semicolons would make any difference, besides being a pain to do! – alex May 1 at 5:54
Ah, emacs and the join of M-X align-regexp-region – Dominic Rodger May 1 at 8:31
In TextMate ⌘⌥] (Command + Option + Right Bracket) will do this. – GloryFish May 1 at 14:26
vote up 3 vote down

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.

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.

I think the advantage of readability you mention is somewhat offset by the extra effort required to write it.

link|flag
vote up 5 vote down

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.

link|flag
vote up 14 vote down

Whichever style the project is already using, so you dont end up spending all day "fixing" every file you touch.

link|flag
Like I have. :) – Joe Koberg May 1 at 5:03

Your Answer

Get an OpenID
or

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