Is it possible to return a class through it's own function, so you can chain functions like below:
class Foo;
Foo.setX(12).setY(90);
Can anyone confirm if this is possible, and how it would be achieved?
|
|
Is it possible to return a class through it's own function, so you can chain functions like below:
Can anyone confirm if this is possible, and how it would be achieved? |
||
|
|
|
|
For that specific syntax you'd have to return a reference
P.S. Or you can return a copy ( |
|||
|
|
|
|
Output:
|
||
|
|
|
|
Another example is the Named Parameter Idiom. |
||
|
|
|
Well, you can return an object from its own function in order to chain functions together:
Which outputs:
|
||||||||
|
|
|
Yes its possible. A comon example is operator overloading, such as operator+=(). For example, if you have a class called ComplexNumber, and want to do something such as a+=b, then you could
In your case you could use.
|
||||||||
|