vote up 7 vote down star
2

I have already proposed this in my blog, but I find this place the most appropriate.

For classes that have a long list of setters that are used frequently, I found this way very useful (although I have recently read about the Builder pattern in Effective Java that is kinda the same). Basically, all setter methods return the object itself so then you can use code like this:

  MyClass
    .setInt(1)
    .setString("test")
    .setBoolean(true)
  ;

Setters simply return this in the end:

  public MyClass setInt(int anInt) {
    [snip]
    return this;
  }

What is your opinion? What are the pros and cons? Does this have any impact on performance?

flag

11 Answers

vote up 4 vote down check

@pek
Chained invocation is one of proposals for Java 7. It says that if a method return type is void, it should implicitly return this. If you're interested in this topic, there is a bunch of links and a simple example on Alex Miller's Java 7 page.

link|flag
vote up 0 vote down

It makes sense for builders, where all you are going to do is set a load of stuff, create the real object and throw the builder away. For builders, you might as well get rid of the "set" part of the method name. Similarly, immutable types don't really need the "get".

Something thing = new SomethingBuilder()
    .aProperty(wotsit)
    .anotherProperty(somethingElse)
    .create();

A useful trick (if you don't mind a ~2K runtime overhead per class) is to use the double brace idiom:

JFrame frame = new JFrame("My frame") {{
    setDefaultCloseOperation(DISPOSE_ON_CLOSE);
    setLocation(frameTopLeft);
    add(createContents());
    pack();
    setVisible(true);
}};
link|flag
That's not an "idiom". It's a horrible abuse of anonymous classes that doesn't become acceptable just because you give it a pretty name. – Michael Borgwardt Apr 3 at 13:13
It's an idiom. It makes code less cluttered. It'll do for me until I'm using a language that can express it more clearly. – Tom Hawtin - tackline Apr 3 at 13:46
+1: two good points. why downvote? he's listed the caveat of runtime overhead. – Jason S Jul 1 at 14:30
vote up 0 vote down

I ended up doing this a lot when working with the Apache POI excel library; I ended up writing helper methods that chained so I could apply formatting, data types, internal cell data, formulas, and cell positioning.

For stuff with lots of little tiny flyweight elements that need to have finicky little tweaks applied it works pretty well.

link|flag
vote up 0 vote down

@Dan again, for more complex situations (immutability comes in mind) the Builder Pattern is a great solution.

Also, I agree with you mostly in getters. I believe what you are saying is to mostly follow the "Tell don't ask" paradigm and I greatly agree. But that is oriented mostly at getters.

Lastly, all of the above are for classes that have a great deal of attributes. I don't see a reason for any if you only have less than, say, 7.

link|flag
vote up 0 vote down

@martinatime Yes, I agree that you can also do that, but it really gets messy if you have more than 7 parameters. I think that's what a Builder pattern solves but in a more complex way.

link|flag
1  
more than 7? How about more than 2 or 3? Remembering the argument ordering in constructors is a real pain. – Jason S Jul 1 at 14:31
vote up 0 vote down

I use to be a fan of the Java (and worse C#) practice of making getters and setters (get set properties) throughout an object. This use to be what I considered object oriented, but really this leads us just to exposing the guts and implementation of the object and not really taking advantage of encapsulation. There are times you can't get away from this (OR/M comes to mind), but in general the object should be set up and then perform its function. My dream objects tend to have one or two constructors, and maybe a half dozen functions that do work.

The reason for this is that once I started developing API's there is a real need to keep things simple. You really only want to add as much complexity as is required to get the job done, and getters and setters, while simple in themselves, add complexity in heaps when added in mass. What happens when I load setters i na different order? Anythign different? Are you sure?

link|flag
vote up 0 vote down

I find this to be in poor style when used in setters. Immutable classes are usually a better fit for chaining, such as:

aWithB = myObject.withA(someA).withB(someB);

where myObject is of this class:

class MyClass {
    withA(TypeA a) {
         this.a.equals(a) ? this : new MyClass(this, a);
    }

    private MyClass(MyClass copy, TypeA a) {
        this(copy);
        this.a = a;
    }
}

The builder pattern is also useful, since it allows the final object to be immutable while preventing the intermediate instances you would normally have to create when using this technique.

link|flag
vote up 0 vote down

This idea is seen a lot in c++, it allows operations to be cascaded...

for example


std::cout << "this" << "is" << "cascading" 

is where the stream method << returns an instance of itself (*this).

see this: http://www.java2s.com/Tutorial/Cpp/0180__Class/Cascadingmemberfunctioncallswiththethispointer.htm

link|flag
vote up 0 vote down

I agree with @Bernard that method chaining like this muddles the purpose of the setters. Instead I would suggest that if you are always creating chains of setters like this that you create a custom Constructor for your class so instead of

    MyClass
    .setInt(1)
    .setString("test")
    .setBoolean(true)
  ;

You do

new MyClass(1,"test",true);

This makes it more readable and you can use this to make your class immutable if you chose to.

link|flag
1  
Actually, this makes it much, MUCH less readable if you have a large number of setters and there's a lot of variation in which ones you need to call. Trying to handle that with overloaded constructors will be a nightmare, trust me. – Michael Borgwardt Apr 3 at 13:09
I disagree. Constructors should only have parameters for what is REQUIRED at the time of creation. Constructors for convenience are to make up for lack of a proper construct to handle the same semantics. – Matt Olenik Apr 15 at 9:46
vote up 3 vote down

This is called a Fluent Interface, for reference.

Personally, I think it's a pretty neat idea, but a matter of taste really. I think jQuery works this way.

link|flag
vote up 1 vote down

I wouldn't do it myself, because to me it muddies what a particular method does, and the method-chaining is of limited use to me over doing it longhand. It isn't going to send me into a quivering ball of rage and psychosis, though, which is always a good thing. :')

I wouldn't be concerned about performance; just ask Knuth.

link|flag

Your Answer

Get an OpenID
or

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