-
Enhancement
-
Resolution: Other
-
P4
-
None
-
None
A DESCRIPTION OF THE REQUEST :
As java doesn't has references (only pointers), the most common errors I've seen so far is NullPointerException. So the suggestion is simple either to have reference types like "String& " or keyword notnull..
so I can write either:
public void doSomething(String& s) { }
or
public void doSomething(notnull String s){}
and be sure that nobody will pass me a null pointer. The first syntax is more regular and natural, while the second is more java like :)
JUSTIFICATION :
It will make code maintenance easier, and make NullPointerException really exceptional rather than regular.
###@###.### 2004-12-13 23:35:06 GMT
As java doesn't has references (only pointers), the most common errors I've seen so far is NullPointerException. So the suggestion is simple either to have reference types like "String& " or keyword notnull..
so I can write either:
public void doSomething(String& s) { }
or
public void doSomething(notnull String s){}
and be sure that nobody will pass me a null pointer. The first syntax is more regular and natural, while the second is more java like :)
JUSTIFICATION :
It will make code maintenance easier, and make NullPointerException really exceptional rather than regular.
###@###.### 2004-12-13 23:35:06 GMT
- duplicates
-
JDK-6232585 Support for a lexical "nonnull" keyword would ease critical development
-
- Closed
-
-
JDK-6918669 Unboxing of null Values needs unique exception. Not obvious to debug otherwise.
-
- Closed
-
-
JDK-5030232 Add Nice Option types to Java to prevent NullPointerExceptions
-
- Closed
-
- relates to
-
JDK-6514490 12.5: Request to execute final field initializers before superclass construction
-
- Closed
-