NDepend Blog

Improve your .NET code quality with NDepend

Null Is Evil. What's the Best Alternative Null

Null Is Evil. What’s the Best Alternative? Null.

May 1, 2018 7 minutes read

“Null is evil.” If you’ve been a software developer for any reasonable length of time, I bet you’ve come across that statement several times.

I’d say it’s also very likely that you agree with the sentiment, i.e., that the null reference is a feature our programming languages would be better off without. Even its creator has expressed regret over the null reference, famously calling it his “billion-dollar mistake.”

Bashing poor old null tends to get old, so authors don’t do just that. They also offer alternatives. And while I do believe that many of the presented alternatives have their merits, I also think we may have overlooked the best solution for the whole thing.

In this post, we’re going to examine some of the common alternatives for returning null before making the argument that the best alternative is null itself. Let’s get started!

Null Is Toxic…

I won’t dwell too much on the whole “null is evil” thing, since a lot has been written about it already. Some examples:

This Stack Overflow answer also has some valuable information.

…But Useful. What Are the Alternatives?

Now, I hope we’re on the same page regarding null’s status as a problematic language feature. But toxic or not, null serves some purposes. People use it to represent an absent, invalid, or unknown piece of data, or even to indicate that an error has occurred.

What should they be doing instead?

Throw an Exception

In some situations in which people return null, the reasonable thing to do is to throw an exception. Think of it this way: if a method promises to perform something and fails to do so, it should throw. In other words: when a method fails to fulfill its contract, then it is reasonable to throw.

Of course, you should reserve exceptions for scenarios that are truly exceptional. If a certain situation happens often, then an exception is not the best solution.

Null Object Pattern

Consider the following lines of code:

What should happen if there isn’t a contract with ID equals to 42? If the “Find” method returns null, then you’re in for a nasty NullReferenceException. As I’ve said earlier, null makes your code lie. If we were to be really pedantic about it, the method “Find” should be renamed to “FindOrReturnNull”. Too verbose, but more honest.

Anyway, the null object pattern is an attempt to solve this problem. And how does it do that? By creating its own kind of null.

To implement the pattern, we create a new class  (let’s call it “NullContract”) that represents the case when a contract is missing. We make this new class fulfill the same contract as the original class, but we do nothing in the methods. So, if we imagine that “Contract” implements “IContract”, our NullContract class could look something like this:

By employing the null object pattern you could—theoretically, at least—be sure that you’ll always get an object that fulfills the contract you expect it to honor without blowing up in your face.

Maybe/Option

Finally, we have a very interesting alternative that is often found in functional programming languages. This alternative is the use of a dedicated type meant to represent the use case of a potentially absent value. For instance, in F# this is called the option type; Haskell calls it Maybe. Starting in version 8, Java introduced the Optional class.

At this time, C# doesn’t offer something along those lines natively.

Alternatives to Null: Are They Any Good?

Having presented the more commonly used alternatives for null, it’s time for the final verdict. Let’s start with the “throw exception” option.

Exceptions

If the caller fails to supply the correct arguments for the function they’re calling, then we could say they’re breaking the function’s contract. Throwing an exception is the correct thing do to in this situation.

The following code is a good example of what not to do:

I see code like this all the time in production. Nested ifs are awful. They should have at least used an “and” to fit the whole thing in just one if. But what should really happen is something like this:

Also, don’t catch exogenous exceptions that might happen inside your method and return null; instead, just let them bubble up since these type of exceptions represent problems outside of your control. Issues like a failure in the network are problems that you couldn’t have prevented anyway, code-wise.

Null Object Pattern

Let’s consider the null object pattern, which I’m certainly not a huge fan of. One problem with this pattern is that you should only use it when the calling code doesn’t care about the outcome of whatever it’s trying to accomplish. Consider again our contract example:

This line of code is not “aware” (nor does it care) if the “Contract” variable refers to a valid contract or an instance of NullContract. If it’s a valid contract, it will be extended by 12 months. If it’s not, then nothing will happen. Sometimes, that’s exactly what you want, but not always. In this example, if a contract with ID equals to 42 really was supposed to exist but did not…maybe throwing an exception would work best.

All I’ve said so far is that the null object pattern isn’t well suited for every scenario. This isn’t that bad of a problem; you could say the same about pretty much anything.

My main issue with the null object pattern is that it amounts to little more than creating a new type of null without really solving the problem. You see, using the pattern doesn’t prevent you from returning null. If I consume some method written by a third party that claims to use the pattern, I should be able to assume that whatever it returns is safe for me to deference. But I can’t know for sure. I have three options:

  • Trust the author of the code;
  • Inspect the source code, if possible; or
  • Continue to check for null, which completely defeats the purpose of using the pattern.

You could argue that these problems aren’t relevant in the context of a single team working with the same codebase. The developers could agree on using the pattern correctly. But if everything amounts to trust and convention at the end of the day, you might as well just agree to never return null and you’d have the same result.

Maybe/Option

Last but not least, what about Maybe/Option types? This is an alternative that’s both elegant and robust, especially in languages such as F# where you’re actually forced, in a sense, to handle both cases by using pattern matching.

But the sad reality is this: while maybe/option types are amazing approaches, they can’t change the fact that null exists and will continue existing. You can’t really stop people from using it, nor can you remove it from all the lines of code people have been writing since the dawn of C#.

So, even though they are great approaches, they still suffer from the problem of being yet another type of null for the developers to deal with.

The Solution for Null: Null Itself

Do you know the old saying “When in a hole, stop digging?” For better or worse, null exists. Toxic or not, it’s a feature people use. So maybe the solution for this whole thing is just to fix null.

The kotlin language got it right by having different nullable and non-nullable types and adding all kinds of checks to prevent the developer from doing things that would end badly, like dereferencing a nullable type without checking it for null or assigning a nullable value to a non-nullable variable.

C# gave us the first step in the right direction many years ago with nullable value types. After a long wait, reference types will finally get the same benefit with C# 8.0.

The alternative for null is null itself…when done properly.

Comments:

  1. spongebob says:

    i like turtles

  2. Francesco says:

    What about Null Propagation?
    For example contract?.Extend(12);
    Maybe this is the best solution.

  3. There’s an amazing functional programming library for C# which offers a really solid OptionType as well as nearly every other functional programming basic and they feel like they are parts of the language, really well integrated.
    https://github.com/louthy/language-ext

  4. For a language like Java, Optional is more useful when proxying an interface. Since the proxy is responsible for generating the return result, it can guarantee that the result is always a non-null Optional. In this use case, Optional becomes more like a baked in language feature.

    At the same time, you could also decide to create your own Empty interface that has an isEmpty() method – the same method used by classes like String or List – to indicate some thing doesn’t exist. If the result of the proxied method is an instance of Empty, the user could simply call isEmpty() to determine if it is empty or not.

    If the user wanted instead to use the kind of transforms in Optional, Empty could have another method test() that returns an Optional. This gives the user the choice to just call isEmpty(), or chain a call to test() with a call to one of the Optional methods to transform the value as desired.

  5. To me null is a great feature that should not be considered toxic. The toxic thing is how it is sometimes used badly by developpers. Exceptions sometimes make them fear but showing a message that something wrong happened to the client is way better than letting him believe that his action worked if it didn’t !

  6. The NullContract type only hides a bug. Rather, before calling Find, there should be a call to a boolean method that verifies that the contract exists. Only if it does, then Find can be used to retrieve it. When used this way, Find cannot be null.

  7. In your example returning Null is valid. This means the Find method found nothing. The bug is not properly handling the Find results.

  8. Ben, thanks for your comment.

    As I’ve understood your suggestion, it seems to me that you’re overlooking the possibility of a race condition. Someone could’ve deleted the record from the database between said “call to a boolean method” and the call to the “Find” method.

  9. Matthew, thanks for your comment. Will definitely check this library out!

  10. Rohde Fischer says:

    So you are basically arguing that even though we can use a proper Maybe type, then because some people will always use null then we should just give up and use it ourselves? I have a hard time agreeing with that logic. Yes we cannot prevent other people from doing things wrong, however that is no excuse for doing bad choices yourself – or more exactly it technically is, but it’s a pathetic excuse.

    I halfway agree with Ben, although such a call can be problematic from a performance perspective. One alternative is to just return a list, which would also be a valid data structure. After all something containing 0 or 1 results is still both a valid list, and locally acceptable as a list.

    But once again, I do not agree that just because things are not perfect or that people will keep doing things that we shouldn’t is a valid reason to not do it correctly or as correctly as conditions allow. Also one should keep striving for perfection and move closer to perfection step by step 🙂

Comments are closed.