About the non-nullable types debate

前端 未结 7 517
北海茫月
北海茫月 2020-12-20 18:07

I keep hearing people talk about how non-nullable reference types would solve so many bugs and make programming so much easier. Even the creator of null calls it his billion

相关标签:
7条回答
  • 2020-12-20 18:15

    I don't understand your example. If your "= new Class()" is just a placeholder in place of not having null, then it's (to my eyes) obviously a bug. If it's not, then the real bug is that the "..." didn't set its contents correctly, which is exactly the same in both cases.

    An exception that shows you that you forgot to initialize c will tell you at what point it's not initialized, but not where it should have been initialized. Similarly, a missed loop will (implicitly) tell you where it needed to have a nonzero .count, but not what should have been done or where. I don't see either one as being any easier on the programmer.

    I don't think the point of "no nulls" is to simply do a textual find-and-replace and make them all into empty instances. That's obviously useless. The point is to structure your code so your variables are never in a state where they point to useless/incorrect values, of which NULL is simply the most common.

    0 讨论(0)
  • 2020-12-20 18:20

    Its a little odd that the response marked "answer" in this thread actually highlights the problem with null in the first place, namely:

    I've also found that most of my NULL pointer errors revolve around functions from forgetting to check the return of the functions of string.h, where NULL is used as an indicator.

    Wouldn't it be nice if the compiler could catch these kinds of errors at compile time, instead of runtime?

    If you've used an ML-like language (SML, OCaml, SML, and F# to some extent) or Haskell, reference types are non-nullable. Instead, you represent a "null" value by wrapping it an option type. In this way, you actually change the return type of a function if it can return null as a legal value. So, let's say I wanted to pull a user out of the database:

    let findUser username =
        let recordset = executeQuery("select * from users where username = @username")
        if recordset.getCount() > 0 then
            let user = initUser(recordset)
            Some(user)
        else
            None
    

    Find user has the type val findUser : string -> user option, so the return type of the function actually tells you that it can return a null value. To consume the code, you need to handle both the Some and None cases:

    match findUser "Juliet Thunderwitch" with
    | Some x -> print_endline "Juliet exists in database"
    | None -> print_endline "Juliet not in database"
    

    If you don't handle both cases, the code won't even compile. So the type-system guarantees that you'll never get a null-reference exception, and it guarantees that you always handle nulls. And if a function returns user, its guaranteed to be an actual instance of an object. Awesomeness.

    Now we see the problem in the OP's sample code:

    class Class { ... }
    
    void main() {
        Class c = new Class(); // set to new Class() by default
        // ... ... ... code ...
        for(int i = 0; i < c.count; ++i) { ... }
    }
    

    Initialized and uninitialized objects have the same datatype, you can't tell the difference between them. Occasionally, the null object pattern can be useful, but the code above demonstrates that the compiler has no way to determine whether you're using your types correctly.

    0 讨论(0)
  • 2020-12-20 18:26

    Non-nullable types make more sense to me when we are dealing with domain objects. When you are mapping database tables to objects and you have non-nullable columns. Say you have a table called User and it has column userid varchar(20) not nullable;

    That would be so convenient to have a User class with UserId string field which is not nullable. You cab reduce some bugs at compile time.

    0 讨论(0)
  • 2020-12-20 18:30

    As I see it there are two areas where null is used.

    The first is the absence of a value. For example, a boolean can be true or false, or the user hasn't yet chosen a setting, hence null. This is useful and a good thing, but perhaps has been implemented incorrectly originally and there is now an attempt to formalise that use. (Should there be a second boolean to hold the set/unset state, or null as part of a three-state logic?)

    The second is in the null pointer sense. This is more often than not a program error situation, ie. an exception. It is not an intended state, there is a program error. This should be under the umbrella of formal exceptions, as implemented in modern languages. That is, a NullException being caught via a try/catch block.

    So, which of these are you interested in?

    0 讨论(0)
  • 2020-12-20 18:31

    I'm currently working on this topic in C#. .NET has Nullable for value types, but the inverse feature doesn't exist for reference types.

    I created NotNullable for reference types, and moved the problem from if's (no more checks for null) to the datatype domain. This makes the application to throw exceptions in runtime and not in compile-time.

    0 讨论(0)
  • 2020-12-20 18:35

    The idea of non-null types is to let the compiler rather than your client find bugs. Suppose you add to your language two type specifiers @nullable (may be null) and @nonnull (never null) (I'm using the Java annotation syntax).

    When you define a function, you annotate its arguments. For instance, the following code will compile

    int f(@nullable Foo foo) {
      if (foo == null) 
        return 0;
      return foo.size();
    }

    Even though foo may be null at the entry, the flow of control guarantees that, when you call foo.size(), foo is nonnull.

    But if you remove the check for null, you will get a compile-time error.

    The following will compile too because foo is nonnull at the entry:

    int g(@nonnull Foo foo) {
      return foo.size(); // OK
    }

    However, you won't be able to call g with a nullable pointer:

    @nullable Foo foo;
    g(foo); // compiler error!

    The compiler does flow analysis for every function, so it can detect when @nullable becomes @nonnull (for instance, inside an if statement that checks for null). It will also accept a @nonnull veriable definition provided it is immediately initialized.

    @nonnull Foo foo = new Foo();

    There's much more on this topic in my blog.

    0 讨论(0)
提交回复
热议问题