Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-6232585

Support for a lexical "nonnull" keyword would ease critical development

XMLWordPrintable

    • Icon: Enhancement Enhancement
    • Resolution: Duplicate
    • Icon: P4 P4
    • None
    • 1.4.2
    • specification
    • x86
    • linux

      A DESCRIPTION OF THE REQUEST :
      It would be nice to introduce a keyword like so:

      nonnull SomeType foo() ;

      Which means that the function can not return a null.

      or...

      void foo(nonnull SomeType bar) ;

      Which means that bar can not be null.

      or.........

      nonnull SomeType bar ;
      Which means bar must be initialized to a nonnull value before being used.

      JUSTIFICATION :
      NullPointerException's are the bane of software development everywhere.
      Many times it is caused by not knowing when somethign can be null.

      Having lexical checks would greatly enhance the ability to write bulletproof code.


      EXPECTED VERSUS ACTUAL BEHAVIOR :
      EXPECTED -
      nonnull SomeType p ;
      p = null ;

      Error, attempt to assign to a nonnull variable.

      SomeType p ;
      p.foo() ;

      Error, attempt to use a non-null variable.
      ###@###.### 2005-2-24 10:39:58 GMT

            gbrachasunw Gilad Bracha (Inactive)
            ndcosta Nelson Dcosta (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: