vote up 0 vote down star

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.

flag

13 Answers

vote up 2 vote down

or

int ID = Blahs.Add( 
            new Blah( 1, 2, 3, 55 )          
         );

I must confess, though, that 76 times out of 77 I do what you did the first time.

link|flag
vote up 2 vote down

first way since you are inlining it anyway.

link|flag
vote up 5 vote down

I'd go with the one-liner. If the real arguments make one line too long, I would break it up with a variable.

Blah blah = new Blah(1,2,3,55);
int ID = Blahs.Add( blah );
link|flag
vote up 1 vote down

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.

link|flag
vote up 5 vote down
int ID = Blahs.Add
( 
    new Blah
    (
        1,    /* Comment about argument */ 
        2,    /* Comment about argument */ 
        3,    /* Comment about argument */ 
        55    /* Comment about argument */ 
    )          
);
link|flag
1  
/* This is a one. */ /* This is a two. */ /* This is a three. */ /* This is a fifty five. */ – frou Nov 22 '08 at 16:35
so much wasted space, ugh! – Chris Ballance Nov 22 '08 at 16:53
My eyeballs were hurting until I got to this one. Thank you. – MusiGenesis Nov 22 '08 at 17:45
@Chris: I sell bulk whitespace off my website. I can cut you a good deal, and I take PayPal. – MusiGenesis Nov 22 '08 at 17:45
i need a gross of tabs, and 5000 rounds of blanks for my 380. – EvilTeach Nov 22 '08 at 21:16
vote up 4 vote down

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:

int result = Blahs.Add( new Blah(1, 2, 3, 55) );

but if those numbers carry some meaning on their own, each number could stand for something entirely different, for example if Blah denotes the type for an inventory item. I would go with

int ID = Blahs.Add( new Blah(
    1, /* wtf is this */ 
    2, /* wtf is this */
    3, /* wtf is this */
    55 /* and huh */
));
link|flag
under what conditions would they not have a meaning? – EvilTeach Nov 23 '08 at 14:48
if they don't have a different meaning on their own. for example, 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. But if Blah is a inventory item, each number could stand for something entirely different. – Johannes Schaub - litb Nov 23 '08 at 16:19
vote up 2 vote down

I would use similar formatting as your first example, but without the redundant space delimiters before and after the parenthesis delimiters:

int id = BLahs.Add(new Blah(-1, -2, -3));

Note that I also wouldn't use an all upper-case variable name in this situation, which often implies something special, like a constant.

link|flag
vote up 10 vote down

I agree with Patrick McElhaney; there is no need to nest it....

Blah aBlah = new Blah( 1, 2, 3, 55 );
int ID = Blahas.Add( aBlah );

There are a couple of small advantage here:

  1. You can set a break point on the second line and inspect 'aBlah'.
  2. Your diffs will be cleaner (changes more obvious) without nesting the statements, e.g. creating the new Blah is in an independent statement from adding it to the list.
link|flag
+1 for spacing out the comma-delimited elements – MusiGenesis Nov 22 '08 at 17:48
1  
+1 for anticipating debuggery – mseery Nov 22 '08 at 19:09
Agreed! Also, the addition of the variable makes the code a little more self-documenting (assuming you name the variable thoughtfully). – Patrick McElhaney Nov 22 '08 at 20:08
vote up 2 vote down

Either split it into two lines:

new_Blah = new Blah(-1, -2, -3)
int ID = BLahs.Add(new_Blah);

Or indent the new Blah(); call:

int ID = BLahs.Add(
    new Blah(-1, -2, -3)
);

Unless the arguments were long, in which case I'd probably do something like..

int ID = BLahs.Add(new Blah(
    (-1 * 24) + 9,
    -2,
    -3
));

As a slightly more practical example, in Python I quite commonly do the either of the following:

myArray.append(
    someFunction(-1, -2, -3)
)

myArray.append(someFunction(
    otherFunction("An Arg"),
    (x**2) + 4,
    something = True
))
link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down

The problem with

Blah aBlah = new Blah( 1, 2, 3, 55 );
int ID = Blahas.Add( aBlah );

is that it messes with your namespace. If you don't need a reference to the Blah you shouldn't create it.

link|flag
It seems rather harsh to consider having a variable that is only used once within a scope as messing with a namespace, especially when the purpose of breaking it out is to improve code readability. – J c Nov 22 '08 at 20:46
Now, I don't know how much Java you've been programming, but it really isn't improving code readability just to break things like that in to several lines. Of course you could separate the ints 1, 2, 3 and 55 into new variables, using a std. emtpy constructing and then setting, but it's not good. – Tim Sullivan Nov 22 '08 at 23:04
The fact that he added "My class has lots of parameters actually, so that might effect your response." just makes the point even better. – Jonas Follesø Nov 22 '08 at 23:05
If the temp variable is defined within a narrow scope, it hardly contributes to namespace pollution. – Dave Sherohman Nov 23 '08 at 16:42
@pgd: I don't think anyone was suggesting defining each constructor argument as a separate variable. If his Blah class has lots of parameters, that would be a pro for having the aBlah reference, not a con. – J c Nov 23 '08 at 16:43
vote up 0 vote down

I'd either do it as a one-liner or assign the new Blah to a variable, depending on whether I'll need to reference that Blah directly again.

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

int ID = BLahs.Add(new Blah( foo => -1, bar => -2, baz => -3 ));
link|flag
vote up 1 vote down

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.

link|flag

Your Answer

Get an OpenID
or

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