How would you format/indent this piece of code?
int ID = Blahs.Add( new Blah( -1, -2, -3) );
or
int ID = Blahs.Add( new Blah(
1,2,3,55
)
);
Edit:
My class has lots of parameters actually, so that might effect your response.
|
|
How would you format/indent this piece of code?
or
Edit:My class has lots of parameters actually, so that might effect your response. |
|||
|
|
|
|
Whatever Eclipse's auto-formatter gives me, so when the next dev works on that code and formats before committing, there aren't weird issues with the diff. |
||
|
|
|
|
I'd either do it as a one-liner or assign the As far as the readability issue which a couple answers have addressed by putting each argument on a separate line with comments, I would address that by using named parameters. (But not all languages support named parameters, unfortunately.)
|
||
|
|
|
|
The problem with
is that it messes with your namespace. If you don't need a reference to the Blah you shouldn't create it. |
||||||||||
|
|
|
int ID = Blahs.Add(new Blah(1,2,3,55)); // Numbers n such that the set of base 4 digits of n equals the set of base 6 digits of n. |
||
|
|
|
|
Either split it into two lines:
Or indent the new Blah(); call:
Unless the arguments were long, in which case I'd probably do something like..
As a slightly more practical example, in Python I quite commonly do the either of the following:
|
||
|
|
|
|
I agree with Patrick McElhaney; there is no need to nest it....
There are a couple of small advantage here:
|
||||||||
|
|
|
I would use similar formatting as your first example, but without the redundant space delimiters before and after the parenthesis delimiters:
Note that I also wouldn't use an all upper-case variable name in this situation, which often implies something special, like a constant. |
||
|
|
|
|
All numbers are being added to a result. No need to comment each number separately. A comment "these numbers are added together" will do it. I'm going to do it like this:
but if those numbers carry some meaning on their own, each number could stand for something entirely different, for example if
|
||||
|
|
|
|
||||||||||||
|
|
|
One line, unless there's a lot of data. I'd draw the line at about ten items or sixty, seventy columns in total, whatever comes first. |
||
|
|
|
|
I'd go with the one-liner. If the real arguments make one line too long, I would break it up with a variable.
|
|||
|
|
|
|
first way since you are inlining it anyway. |
||
|
|
|
|
or
I must confess, though, that 76 times out of 77 I do what you did the first time. |
||
|
|