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 2 vote down

Uh, what's the context? Blanket statements like that are dangerous and usually result from misunderstanding something.

link|flag
vote up 10 vote down

In C# at least, returning an Array is probably not a good idea. For reasons why, see this blog post by Eric Lippert.

In a nutshell, if you are returning an array that is a private member of your class, then you will be exposing your class's internal state to the caller, and they can then make changes which may have unintended side effects.

To get round this, you would have to create a copy of the array every time you return it, which is an O(n) operation that may have a negative impact on performance for large arrays.

All in all, his statement seems a bit muddled to me. There's no reason why you shouldn't return bool or an instance (returning an instance of something is what the Abstract Factory design pattern and friends are all about) and while null can be a pain in the neck at times, there may be some places where you will want to return it, e.g. to indicate a record not found in a database.

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

Yuck!!

Re enums -> no standards Re Arrays -> unless your arrays have size, it won't work, if they do, that's overhead. Re Iterator -> more cost at (often) no benefit.

link|flag
vote up 3 vote down

As best-practices, I'd have to say this is fairly poor. Sometimes you do need to return a boolean, because the function checks for the existence of some sort of condition. At times it's good to think if you can return something 'more' than just true or false - for instance, when searching of string A is in string B, most languages have a function that returns either 'No' or 'Yes and it's at position X', by returning that position. But there are times when what you need is either yes or no, and restricting that to the point where someone has to write an Enum with the values of 'True' and 'False' is ridiculous.

link|flag
vote up 21 vote down

The best interpretation I could come up for that statement is "prefer enumerations to booleans, empty arrays to nulls, and an iterator to a container rather than the container itself".

If it's not clear from code what the boolean represents then an enum can make things clearer. If a method returns an array, then yes it should return an empty array as opposed to a null if there are no elements to return. As for returning an iterator, that's mainly a C++ idiom, although in C# returning an IEnumerable<T> or IList<T> is better than returning the underlying implementation.

link|flag
vote up 51 vote down

enum vs bool

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"

if (!create_instance())          // "If not create instance?" Wha?
if (create_instance() == FAILED) // Much more explicit and clear.
                                 // Also possibly a required check if an
                                 // implicit cast to bool does not exist.

Granted it's a bit of a style thing, but the enhanced readability and, to some degree, type safety makes it worth considering.


array vs null

I'm guessing this is a language-specific case for a Null Object -- C# doesn't like foreach being called on null, but will work properly with an array with no elements (or so I'm told -- I'm a C++ guy myself). It isn't always applicable, but often you can create an object that effectively behaves as a "null" object, avoiding the risk of the program blowing up if the user doesn't check for this case himself. For example:

/// Returns foo's name, normalizing it if it isn't already.
String* get_name() {
    String* name = foo.get_name();
    if (name == nullptr)
       return &EMPTY_STRING;
    name->normalize();
    return name;
}

Can be replaced with:

String* get_name() {
    String* string = foo.get_name();
    string->normalize();
    return string;
}

Admittedly not the best example, but hopefully it communicates the idea behind this.


iterator vs instance

I'm guessing this is saying: If you have a container and an element is requested, return an iterator to that position rather than just the single element. Presumably the iterator can be dereferenced easily enough if only that one element was desired, and if the position is needed as well, it's already right there. (Note that I personally don't agree with this one.)

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

Lets take it in parts. When a method is being used to detect a state or condition, a simple boolean seems inadequate. A enumeration on the other hand can represent a domain in a better fashion. Think of detecting a user's choice, say a preferred colour or marital status. A simple boolean would be insufficient, on the other hand a enumeration can actually reflect the modelled choices more accurately without compromising type safety.

The second part is generally a programming style used when a method needs to return multiple values. I can think of two instances where this becomes more agreeable.

  1. Modular code needs to have a single point of return, this makes code more 'refactorable'. So an empty list or array is declared at the beginning of the method and populated as part of the logic. Returning a null would essentially show that there are two exit points.
  2. The code that uses methods that may return null, is forced to check for nulls. On the other hand, If we return an empty array or a iterator, the looping construct would automatically eliminate the need for null check. The empty array/iterator imply no run. Thus reducing the extra lines of code.
link|flag
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
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 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 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 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 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 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 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 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 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 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 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 4 vote down

Always return a null, never a "null"

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

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 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 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 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 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 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 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

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

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
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.