Another common-ish use is with "parameter objects". Without method chaining, they're quite inconvenient to set up, but with it they can be temporaries.
Instead of:
complicated_function(P1 param1 = default1, P2 param2 = default2, P3 param3 = default3);
Write:
struct ComplicatedParams {
P1 mparam1;
P2 mparam2;
P3 mparam3;
ComplicatedParams() : mparam1(default1), mparam2(default2), mparam3(default3) {}
ComplicatedParams ¶m1(P1 p) { mparam1 = p; return *this; }
ComplicatedParams ¶m2(P2 p) { mparam2 = p; return *this; }
ComplicatedParams ¶m3(P3 p) { mparam3 = p; return *this; }
};
complicated_function(const ComplicatedParams ¶ms);
Now I can call it:
complicated_function(ComplicatedParams().param2(foo).param1(bar));
Which means the caller doesn't have to remember the order of parameters. Without the method chaining that would have to be:
ComplicatedParams params;
params.param1(foo);
params.param2(bar);
complicated_function(params);
I can also call it:
complicated_function(ComplicatedParams().param3(baz));
Which means that without having to define a tonne of overloads, I can specify just the last parameter and leave the rest at default.
The final obvious tweak is to make complicated_function a member of ComplicatedParams:
struct ComplicatedAction {
P1 mparam1;
P2 mparam2;
P3 mparam3;
ComplicatedAction() : mparam1(default1), mparam2(default2), mparam3(default3) {}
ComplicatedAction ¶m1(P1 p) { mparam1 = p; return *this; }
ComplicatedAction ¶m2(P2 p) { mparam2 = p; return *this; }
ComplicatedAction ¶m3(P3 p) { mparam3 = p; return *this; }
run(void);
};
ComplicatedAction().param3(baz).run();
*thisas anA&, and writingA* a = new A; a->setA().setB()or (more importantly)A b; b.setA().setB();.b.setA()->setB();is a bit rubbish ;-) – Steve Jessop Nov 16 '11 at 10:15