vote up 18 vote down star
14

Do you subscribe to this school of thought?

Assertion:

"I always return an Enum, Array, or an Iterator, never a Boolean, NULL, or an Instance."

Reasoning:

Code using Enums instead of Booleans. Return Empty Arrays instead of nulls, and return an Iterator even if the calling Method will only take the first value; instead of, returning an Instance. All these measures are intended to improve the extensibility of the codebase with negligible drawbacks. And furthermore, because of these points, it should be adopted as a best-practice.

flag
1  
@Nathan: It's of note that the "OP's...silly questions" have be voted to be Good Questions well above the standards you yourself have set. Most of your posts rate 0 so very frequently. So I guess you should recognize a silly Question when you see one, because you write so damn many of them. – _ande_turner_ Mar 11 at 11:32
show 6 more comments

37 Answers

1 2 next
vote up 143 vote down check

It's from the school of thought called inexperience.

"Always" and "Never" are words that should "Never" be used in programming :p

In every case, you do what makes sense. Even returning null has a place.

link|flag
1  
you can usually tell the level of experience of a typical systems analyst by how much he hedges anything he says...allegedly ;-) – Steven A. Lowe Oct 5 '08 at 2:23
1  
+1 for talking sense – MatthieuF Mar 6 at 9:08
show 6 more comments
vote up 1 vote down

My first thought: Wow, this is a lot of comments for anything said by a grad student. You should have stopped listening when you realized he wasn't describing how to make a bong out of some common household good. Second thought: So he wants me to make my code needlessly complex and hard to read because I might want to extend a few functions some unknown time in the future? Yeah, that sounds good.
I think it is clear this guy has not worked on a large project with a team before. Go ahead and try to program that way on some teams I have been on. I think they would have burned him at the stake after the first code review.

link|flag
vote up 2 vote down

In my experience returning a bool is fine since many methods have a boolean like quality to them. However, passing bools typically causes confusion as the user has to examine the prototype to infer what the bool means.

It's better to create an enumeration and pass this, even if it does mean a bit more typing but it's much more self-documenting and this is always better in the long run.

link|flag
vote up 0 vote down

Maybe your graduate student is trying to hide his lack of understanding behind ridiculous dogma?

link|flag
vote up 1 vote down

Extensibility and flexibility are good objectives -- but the experienced developer also recognizes that, paradoxically, the more flexibility you try to design in, the more complex the system becomes, and therefore hard to evolve and maintain since even simple changes can have unobvious implications. The ultimate in flexibility is the ultimate in brittleness.

Complexity costs.

It's the same with Dependency Injection, really. It's a good thing, when you have a reasonably accurate guess at what points changes are likely. If you try to inject configurability everywhere, you build a monster not even its creator will be able to understand.

link|flag
vote up 2 vote down

Code using Enums instead of Booleans. Return Empty Arrays instead of nulls, and return an Iterator even if the calling Method will only take the first value; instead of, returning an Instance

I worked on an ORM class for PHP, called Zend_Db_Table. This class had a method find() which returns a database row, corresponding to the primary key value you give as an argument. Sounds like a case that can return only zero or one rows, right? So either one object instance, or else null.

However, it also supported an argument that was an array of primary key values. So it had the potential for returning multiple rows, one row, or zero rows. I changed this find() function to return a Rowset object, which we were using as a collection object for rows. That way it simplified usage in calling code: you always knew the return type was an Iterable. You didn't have to write a case statement to test the type of the return value.

So there are certainly cases where your grad student's guidelines make sense.

  • Enum is extensible and carries more information than a boolean. A function that returns one of two distinct values, but may offer more in the future, is a clear case where a boolean is not the right choice.

  • If the non-null result of a function is an array, then returning a null means the calling code has to handle this special case, or else coerce the null to an empty array anyway, before it can iterate over the result.

  • If the function may return an array of variable length, then don't "optimize" the singleton case by returning an instance. Return an array containing one element. Likewise, if the array has zero elements, return an array with zero elements.

But these guidelines are not universal, and it's naive to try to make them rules to apply in all situations. There are just as valid cases where bool, null, and a single object instance is appropriate:

  • It would be nonsensical for a function that is a predicate to return values other than true and false. So there's no reason to use an enum in those cases.

  • A function that normally returns a single instance and has no reason to return an array may return null to signify "no value."

  • A function that normally returns a single instance has no reason to return an iterator.

link|flag
vote up 1 vote down

Return an Enum, Array, or an Iterator when you need to return an Enum, Array, or an Iterator. Return a Boolean, NULL, or an Instance when you need to return a Boolean, NULL, or an Instance.

If the answer is not 6 weeks, it's normally "it depends".

Only Sith deal in absolutes, right?

link|flag
vote up 1 vote down

There is another reason to consider this approach: On some compilers, returning anything other than register-sized objects adds extra operations to truncate, sign extend and/or mask bits. This also applies to parameters to functions and methods.

Whether this extra overhead is significant, and worth the reduction in readability, I leave as an exercise for the reader.

link|flag
vote up 1 vote down

Their Reasoning: Code using Enums instead of Booleans. Return Empty Arrays...

You call "Code using Enums instead of Booleans" a reasoning?

To answer your last question, of course, no. If I did, I wouldn't be able to answer in the first place, because your question requires a boolean answer. So does my code: it returns a boolean when it is required.

link|flag
vote up 1 vote down

Personally, and this is way too far down the list right now to matter, I never use the term "Best Practices". To state that something is the best is to imply that questioning it is out of bounds. I'd place that right up there with "always" and "never" as terms to avoid.

As for the particulars of your graduate student's assertion, I would chalk that up to being a graduate student rather than a practicing professional.

link|flag
vote up 1 vote down

As a C/C++ programmer, the only way I would fill in those blanks that Always applies is:

"Always return an immediate value, or a pointer to heap or static memory, never a pointer to the stack."

link|flag
vote up 1 vote down

Returning empty array/lists rather than nulls makes sense, it allows the calling code to be simpler – no special-case code to deal with the nulls.

I'm not sure what you mean by "never return an instance" – are you saying always a Array/List/Iterator rather than a single object? That would be an odd and pointless practice.

The other interpretation, returning an interface over a concrete type (e.g. returning IList<Foo> or IEnumerable<Foo> over List<Foo>) is a good practice, but I wouldn't call it a "must" and "always" practice.

As for not using booleans, this wrong idea is debated at Are booleans as method arguments unacceptable?

link|flag
vote up 10 vote down

All I can offer is my simple opinion, a predicate had better return a boolean

if is_prime(foo):
   etc...

is quite nice:

if prime_or_composite(foo) == NUMBERS.PRIME:
    etc...

Is heinous. Predicates happen all over the place. Love them!

link|flag
vote up 0 vote down

My first thought was :

"This way of thinking tends to break semantic and readability to enforce extensibility."

But thinking honestly about it, if it's an habit and does not affect performances in your project, maybe it has its good paybacks.

I'd say to try it before jugging it, but it would bore me to death to type [0] after a isSomething() method ;-) Anyway, it's frankly a psychological issue.

Eventually, this debate is for hight level programmer only. In C, you wouldn't even ask, would you ?

link|flag
vote up 0 vote down

Simple answer is NO, Further flaming, if you think extensibility in that level 98% of the time you can't code anything in real world.

link|flag
vote up 1 vote down

Re: null.

The Null Object pattern is certainly a good practise, and an often underutilised one. That doesn't mean that you should use it always of course.

Re: iterator vs. instance

I'd say that depends on the semantics of the function. Two is an impossible number, but 1 is quite fine with me.

Re: enum vs. boolean

There are cases where this may be a applicable, and then - by all means - use an enum, but booleans have their place as well.

link|flag
vote up 2 vote down

I strongly object to the enum VS bool idea. following these kind of rules blindly can lead to some hillarious WTFs:

enum EReturnVal {
   True,
   False,
   Maybe
}

EReturnVal isPointInsidePolygon(); // WTF??
EReturnVal isReactorCritical(); // WTF??

some questions must have and will always have a true/false answer. Answering anything else doesn't make sense.

link|flag
vote up 4 vote down

Always return a null, never a "null"

I have seen methods returning a String with value "null" !

link|flag
vote up 23 vote down

YAGNI - You ain't gonna need it

It sounds like a typical student thing: their project is the world's greatest software project ever known to mankind, it will surley live forever and it must therefore be prepared to adapt to all possible changes.

Changes will come, but sadly, seldom in the ways you spent so much preparing for. :-(

link|flag
show 3 more comments
vote up 2 vote down

Code using Enums instead of Booleans. Return Empty Arrays instead of nulls, and return an Iterator even if the calling Method will only take the first value; instead of, returning an Instance

There's been a lot on enums and Booleans already. Some of the other topics. I agree with returning Empty Arrays instead of nulls, because it helps prevent NullReferenceExceptions or the like if the developer using the assembly forgets to add in Null checks. For instance

foos[] = app.GetFoos();
for (int i = 0; i < foos.Length; i++)
{

}

That won't error if the result of app.GetFoos() is empty and helps prevent potential run time errors.

Return an iterator over an instance? I've never heard that one before, but really I think it needs to be applied correctly. For example... ToString()... That should never return more than 1 string, so why return an iterator? I think some common sense and forward thinking should be applied to that prinicple.

link|flag
vote up 0 vote down

As a C and assembly developer, I'll leave the higher level abstractions for others. However, what prototype would he propose for malloc? What exactly should it return, if it can't allocate memory?

I suppose this same comment applies to just above all functions that take or return pointers, but this is a particularly glaring hole in his logic.

As has been mentioned above: always make sure never to say never!

link|flag
vote up 6 vote down

It sounds like pieces of good advice mixed up and misapplied.

Good advice is passing enums instead of booleans.

SomeFunc (someObject, true, true, true, false);

vs

SomeFunc (someObject, IS_ROUND, IS_BLACK, IS_SHINY, IS_NOT_ALIVE);

It's much more clear what the second function does. However there's a good argument to be made that good documentation combined with Intellisense can alleviate this concern, and perhaps it could be argued that adding all these specific enums could cause clutter. I think of it as a good general practice to name your parameters in this way, but perhaps if you have a series of bools like that it indicates another problem in the function design.

I think the grad student in question may have misapplied this advice to return values. In the case of a return value there is only one and it tends to have an unambiguous meaning if it's bool (success or failure). For return values I wouldn't find as much value in the practice of using named parameters rather than the (often) built-in boolean type.

Regarding returning arrays, I +1'd Sébastien Rocca-Serra's answer because it's a great point for Java specifically. In C++ a much better "best practice" would be to never return an array ever. The point Sebastien raised is taken, though... returning a valid value in every case (even if that value is a stub or sentinel) can lead to easier error handling in the calling code. In this case I think the spirit of the rule is much better than the letter of the rule as relayed to us.

As for returning an iterator, I don't have much comment. Given the trends so far I assume it's a skewed version of some practical advice, so if others can enlighten me on the pearl of wisdom in it I'd be appreciative.

link|flag
show 2 more comments
vote up 2 vote down

Absolute extensibility for the sake of extensibility is a nonsense. Readability and performance is often more important. At least I need to understand how the code works before I have a chance to extend it.

Using enums where boolean is enough decreases readability. Returning empty arrays instead of null sometimes decreases performance (this should be carefully profiled).

Anyway this "always" and "never" are just another set of limitations which can hurt badly if applied absolutely every here and there.

link|flag
vote up 2 vote down

Using an enumeration instead of a boolean is a practice where you use a simple two-member enum instead of a bool.

Unlike a boolean, an enumeration is extensible. First you are told that a gate can either be open or shut and later they'll want to know whether it's locked :)

link|flag
show 3 more comments
vote up 3 vote down

All of these techniques (if applied like the OP suggested) make the interfaces to classes/libraries/whatever more clumsy.

If you need this level of "extensibility" for all of your return types I would suggest that maybe you have not done the appropriate level of analysis to really nail down what the interfaces should be.

link|flag
vote up 3 vote down

Umm, why? I'd like to hear a justification for this rule.

Sure there are cases where returning an enum instead of a boolean, for example, would improve clarity. If I have a function called, say, getEmployeeType(), returning an enum that can be SALESMAN or ENGINEER would make sense. Returning a boolean would be crypticm, and not allow for obvious extensions to other types of employee. But suppose instead I had a function isEmployeeSalaried(). Now a true or false would be very clear. Sure, I could have an enum with SALARIED and HOURLY, but that just adds the extra hassle that anyone using the function has to check the list of possible values, whereas with a boolean he immediately knows that the only possible values are true and false.

The idea of returning an array or enumeration even when the caller will only ever use the first value strikes me as insane. Anyone looking at the call is going to be led to the false assumption that this function could return more than one. It sounds like you're deliberately trying to trick the user of your API. To describe this as helping extensibility ... You mean that now the function only returns one element but someday you may modify it to return more than one? Really now. If I have a function to, say, return the logarithm of the passed-in value, is it really plausible to say that someday a number might have two logarithms? Or if it gets the customer's balance, that in the future customer's may have many current balances? If the definitions changed so radically that that somehow made sense, surely we would have to re-examine what any caller was doing with the return value anyway.

By that reasoning, my not just always return an Object (java) or void (C++), so no matter what change you ever make, it will still be valid? The obvious problem with making your return values any more vague than absolutely necessary is that it forces the human user of your API to do extra research to figure out what you might really return, and then to write extra code to extract the specific value from the generic. And I presume if the user knows that you only ever populate the first value in an array or that your enum is always TRUE or FALSe, he's going to just read the first value from the array, or just check the return value for equals TRUE, so any extra flexibility is in your imagination. Or do you suppose that every caller of "Object[] log(float x)" is actually going to write code to loop through the array and check the type of each value to see if it's a String or a file reference, and then do something meaningful with every imaginable type?

link|flag
vote up 16 vote down

Concerning returning empty arrays instead of null in Java, see Item 43 of Joshua Bloch's Effective Java Second Edition (Return empty arrays or collections, not null).

The reason is that returning null forces your callers to treat null as a special case.

E.g. suppose getSomePeople() can return null:

final Person[] persons = getSomePeople()
//Don't forget to test for null, or you can get a NullPointerException!
if(null != persons) {
    for(final Person person : persons) {
        // ...
    }
}

Same example if getSomePeople() returns new Person[0]:

for(final Person person : getSomePeople()) {
    // ...
}

Safer, and easier to read.

And if profiling reveals that creating empty arrays costs too much, store your empty array in a final static member (empty arrays are immutable in Java, and can be shared freely).

There is also

  • Collections.emptySet(),
  • Collections.emptyList(),
  • Collections.emptyMap(),

three generic methods that return immutable empty collections.

As for always returning an Enum instead of a boolean, or an iterator instead of an instance, it looks like a very bizarre thing to do, but maybe it's just me...

if (YES == isInflatable()) // I'd hate to read this!

Cheers!

link|flag
vote up 29 vote down

Extensibility is nice. But sometimes you just really don't need it. Take a function like this, for example:

bool IsWindowVisible() {...}

Boolean is absolutely appropriate in this case. I could use an enum for this, but why? What would the answers be? True, False, and Maybe? Extensibility is not an issue here. I can think of no situation in which I would extend a function called "IsWindowVisible" in such a way that a simple true/false would not be appropriate. If I want the function to do more than tell me whether a window is visible, then I should create a new function for that and deprecate this one (or keep both).

People like your graduate are usually the kind of people who write loose, inefficient code. A piece of code I was working on at work in the past year returned an ArrayList of items to display on a webpage in case of error. Leaving aside the fact that it could have been a generic List or a StringCollection instead (both of which would have been more efficient in this particular case), the programmer's excuse was that you should "never return a null." So.... rather than return a null, he stuck to his principles, and now when a button click ripples through the inheritance chain of this particular module of code, a hundred empty array lists are created when there are no errors, rather than the whole thing simply returning a great big nothing.

My point: "Never" take advice from people who tell you never or always to do things. "Always" write your code to be as efficient and effective as possible.

link|flag
show 2 more comments
vote up 5 vote down

Using enums instead of Booleans brings to mind a classic:

http://thedailywtf.com/Articles/What_Is_Truth_0x3f_.aspx

enum Bool 
{ 
    True, 
    False, 
    FileNotFound 
};

Joking aside, I agree with the reasoning brought forth by Tyler Millican:

Using an enumeration instead of a boolean is a practice where you use a simple two-member enum instead of a bool. For instance:

window->display(false);      // False? False what?
window->display(WINDOWED);   // Same as "fullscreen = false"
window->display(FULLSCREEN); // Same as "fullscreen = true"

However, a properly commented interface and an IDE that can display live documentation on mouse hovers can make things equally clear:

/**
 * Displays the window
 * @param bFullscreen Set to true to display the window
 *                    in fullscreen mode, false otherwise.
 */
 void display(bool bFullscreen);
link|flag
show 2 more comments
vote up 3 vote down

I'm not about to create an enum just so I can have a "proper" return value for my equals method. An empty array should be preferred over returning null, just as an Iterator should be over an instance. As others have said before me, you should never speak in absolutes.

link|flag
1 2 next

Your Answer

Get an OpenID
or

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