Using return statements to great effect! - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T18:13:08Zhttp://stackoverflow.com/feeds/question/393675http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/393675/using-return-statements-to-great-effect2Using return statements to great effect!Ziggy2008-12-26T10:38:38Z2009-03-03T22:44:47Z
<p>When I am making methods with return values, I usually try and set things up so that there is never a case when the method is called in such a way that it would have to return some default value. When I started I would often write methods that did something, and would either return what they did or, if they failed to do anything, would return null. But I hate having ugly <code>if(!null)</code> statements all over my code,</p>
<p>I'm reading a re-guide to ruby that I read many moons ago, by the pragmatic programmers, and I notice that they often return <code>self</code> (ruby's <code>this</code>) when they wouldn't normally return anything. This is, they say, in order to be able to chain method calls, as in this example using setters that return the object whose attributes they set.</p>
<pre><code>tree.setColor(green).setDecor(gaudy).setPractical(false)
</code></pre>
<p>Initially I find this sort of thing attractive. There have been a couple of times when I have rejoiced at being able to chain method calls, like <code>Player.getHand().getSize()</code> but this is somewhat different in that the object of the method call changes from step to step. </p>
<p>What does Stack Overflow think about return values? Are there any patterns or idioms that come to mind warmly when you think of return values? Any great ways to avoid frustration and increase beauty?</p>
http://stackoverflow.com/questions/393675/using-return-statements-to-great-effect/393691#3936911Answer by Matthew Flaschen for Using return statements to great effect!Matthew Flaschen2008-12-26T11:19:56Z2008-12-26T11:19:56Z<p>I don't agree that methods should never return null. The most obvious examples are from systems programming. For instance, if someone asks to open a file, you simply have to give them null if the open fails. There is no sane alternative. There are other cases where null is appropriate, such as a getNextNode(node) method, when called on the last node of a linked list. So I guess what these cases have in common is that null represents "no object" (either no file handle or no list node), which makes sense.</p>
<p>In other cases, the method should never fail, and there is an appropriate exception facility. Then, I think method chaining like your example can be used to great effect. I think it's a bit funny that you seem to believe this is an innovation of the "Pragmatic Programmers". In fact, it dates to Lisp if not before.</p>
http://stackoverflow.com/questions/393675/using-return-statements-to-great-effect/393692#3936920Answer by Jules for Using return statements to great effect!Jules2008-12-26T11:22:21Z2008-12-26T11:22:21Z<p>It's confusing to me. OO programming languages need Smalltalk's semicolon:</p>
<pre><code>tree color: green;
decor: gaudy;
practical: false.
</code></pre>
<p>obj method1; method2. means "call method1 on obj then method2 on obj". This kind of object setup is very common.</p>
http://stackoverflow.com/questions/393675/using-return-statements-to-great-effect/393693#3936933Answer by mstrobl for Using return statements to great effect!mstrobl2008-12-26T11:22:35Z2008-12-26T11:28:35Z<p>In my humble opinion, there are three kinds of return-cases that you should take into consideration:</p>
<h2>Object property manipulation</h2>
<p>The first is the manipulation of object properties. The pattern you describe here is very often used when manipulating objects. A very typical scenario is using it together with a factory. Consider this hypothetical creation call:</p>
<pre><code>// When the object has manipulative methods:
Pizza p = PizzaFactory().create().addAnchovies().addTomatoes();
// When the factory has manipulative methods working on the
// object, IMHO more elegant from a semantic point of view:
Pizza p = PizzaFactory().create().addAnchovies().addTomatoes().getPizza();
</code></pre>
<p>It allows for a quick grasp at what exactly is being created or how an object is manipulated, because the methods form one human-readable expression. It's definitely nice, but don't overuse. A rule of thumb is that this might be used with methods whose return value you could also declare as void.</p>
<h2>Evaluating object properties</h2>
<p>The second might be when a method evaluates something on an object. Consider, for example, the method <code>car.getCurrentSpeed()</code>, that could be interpreted as a message to an object asking for the current speed and returning that. It would simply return the value, not too complicated. :)</p>
<h2>Make object do this or that</h2>
<p>The third might be when a method makes an perform an operation, returning some sort of value indicating how well the caller's intention was fulfilled - but laying out such a method could be difficult:</p>
<pre><code>int new_gear = 20;
if (car.gears.changeGear(new_gear)) // does that mean success or fail?
</code></pre>
<p>This is where you can see a difficulty in designing the method. Should it return 0 upon success or failure? How about -1 if the gear could not be set, because the car only has 5 gears? Does that mean the current gear is at -1 now, too? The method could return the gear it changed to, meaning you would have to compare the argument supplied to the method to the return code. That would work. On the other hand, you could simply return either true or false for failure or false or true for failure. Which one to use could be decided by estimating if you'd expect those method calls to rather fail or succeed. </p>
<p>In my humble opinion, there is a way to better express the semantics of such return values, by giving them a semantic description. Future developers interacting with your objects will love you for not having to look up the comments or documentation for your methods:</p>
<pre><code>class GearSystem {
// (...)
public:
enum GearChangeResult
{ GearChangeSuccess, NonExistingGear, MechanicalGearProblem };
GearChangeResult changeGear (int gear);
};
</code></pre>
<p>That way, it becomes perfectly obvious for any programmer looking at your code, what the return value means (consider: <code>if (gears.changeGear(20) == GearSystem::GearChangeSuccess)</code> - much clearer what that means than the example above)</p>
<h2>Antipattern: Failures as return codes.</h2>
<p>The fourth possibility for a return value I actually omitted, because in my opinion it isn't any: when there's an error in your program, like a logic error or a failure that needs to be dealt with - you could theoretically return a value indicating so. But today, that's not done so often anymore (or should not be), because for that, there are exceptions.</p>
http://stackoverflow.com/questions/393675/using-return-statements-to-great-effect/393815#393815-1Answer by Arkadiy for Using return statements to great effect!Arkadiy2008-12-26T14:11:20Z2008-12-26T14:11:20Z<p>Mostly the methods that logically don't return anything should be returning nothing - c++ "void". For languages that don't have such option, just don't bother to return anything. The failure should be indicated by an exception. "Search" methods are borderline - in those it's sometimes useful to return "special" value when what you were looking for is not found.</p>
<p>Smalltalk has another idiom that could be useful: "ifNotFound" value or block.</p>
http://stackoverflow.com/questions/393675/using-return-statements-to-great-effect/394002#3940021Answer by joel.neely for Using return statements to great effect!joel.neely2008-12-26T17:12:19Z2008-12-26T17:12:19Z<p>Returning <code>this</code> is also used in the "builder pattern", another case where method chaining can enhance readability as well as writing convenience.</p>
<p>A null is often returned as an out-of-band value to indicate that no result could be produced. I believe that this is perfectly reasonable when getting no result is a normal event; examples would include a null return from <code>readLine()</code> at end-of-file, or a null returned when providing a non-existent key to the <code>get(...)</code> method of a <code>Map</code>. Reading to the end of the file is normal behavior (as opposed to an IOException, which indicates that something went abnormally wrong while trying to read). Similarly, looking up a key and being told that it has no value is a normal case.</p>
<p>A good alternative to null for some cases is a "null object", which is a full-fledged instance of the result class, but which has appropriate state and behavior for a "nobody's home" case. For instance, the result of looking up a non-existent user ID might well be a NullUser object which has a zero-length name and no permissions to do anything in the system.</p>