Is it good to have all the setter functions return a reference to the object in c++?
|
2
|
|
|
|
|
|
It's a usable enough pattern if there's a lot of things that need to be set on an object.
This pattern replaces a constructor that takes three ints:
It's useful if you have a number of values that don't always need to be set. For reference, a more complete example of this sort of technique is refered to as the "Named Parameter Idiom" in the C++ FAQ Lite. Of course, if you're using this for named parameters, you might want to take a look at boost::parameter. Or you might not... |
||||||||||||||
|
|
|
IMO setters are a code smell that usually indicate one of two things: Making A Mountian Out Of A Molehill If you have a class like this:
... and the values really are just that simple, then why not just make the data members public?:
...Much simpler and, if the data is that simple you lose nothing. Another possibility is that you could be Making A Molehill Out Of A Mountian Lots of times the data is not that simple: maybe you have to change multiple values, do some computation, notify some other object; who knows what. But if the data is non-trivial enough that you really do need setters & getters, then it is non-trivial enough to need error handling as well. So in those cases your getters & setters should be returning some kind of error code or doing something else to indicate something bad has happened. If you are chaining calls together like this:
... and doA() fails, do you really want to be calling doB() and doC() anyway? I doubt it. |
||||||
|
|
|
The typical purpose for this style is in use for object construction.
instead of
Using the second more traditional style one might forget if the first value passed to the constructor was the age or the id? This may also lead to multiple constructors based on the validity of some properties. Using the first style one might forget to set some of the object properties and and may lead bugs where objects are not 'fully' constructed. (A class property is added at a later point but not all the construction locations got updated to call the required setter.) As code evolves I really like the fact that I can use the compiler to help me find all the places where an object is created when changing the signature of a constructor. So for that reason I prefer using regular C++ constructors over this style. This pattern might work well in applications that maintain their datamodel over time according to rules similar to those used in many database applications:
|
||||||||||
|
|
|
This technique is used in the Named parameter Idiom. |
||
|
|
|
|
If your motivation is related to chaining (e.g. Brian Ensink's suggestion), I would offer two comments: 1.
If you find yourself frequently settings many things at once, that may mean you should produce a 2. One alternative to a setter is creating a new object, changing it, and returning it. This is both inefficient and inappropriate in most types, especially mutable types. However, it's an option that people sometimes forget, despite it's use in the string class of many languages. |
||
|
|
|
|
Yes, I think it would be fine. It's better than returning an actual object or a pointer, and the alternate way of passing a blank object by reference to be set in the function wouldn't we as advisable. Think of objects like primitive types, which are okay to return. :) Returning *this is okay too. |
||
|
|
|
|
You can return a reference to
Personally I think that code is harder to read than the alternative:
|
||
|
|
|
Not all the setters, but some of them could return reference to object to be useful. kind of
I used this once long time ago to build SQL expression builder which handles all the Escapes problems and other things.
I wasn't able to reproduce sources in 10 minutes. So implementation is behind the curtness. |
|||
|
|
|
I would not think so. Typically, you think of 'setter' object as doing just that. Besides, if you just set the object, dont you have a pointer to it anyway? |
||
|
|
