Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

why I can set primitive types to null in ternary operations

I always thought that primitive types in Java cannot be null, as it is a compile time error if i attempt to do something like this:

int test = null;

However in a ternary operation, it seems to be allowed:

int test = something != 0 ? 5 : null;

Isn't a ternary operation just short for (in this case):

int test;
if (something != 0){
    test = 5;
} else {
    test = null
}

which of course should not be allowed. if that condition fails, It will automaticly throw a NullPointerException due to autoboxing. So why the java-compiler doesn't fetch nonsense like this?

like image 517
Rafael T Avatar asked Nov 08 '12 14:11

Rafael T


People also ask

Can you set primitive type to null?

Java primitive types (such as int , double , or float ) cannot have null values, which you must consider in choosing your result expression and host expression types.

Is null primitive type?

A function that is associated with an object via a property is called a method. So, yes, null is a primitive value.


1 Answers

What happens is that the Java compiler first tries to make the types of the expressions on either side of the : equal. In this case, it autoboxes the 5 to an Integer; note that null is a valid value for Integer. The result of the whole ternary expression is Integer. You assign that to an int, so the Integer is then autounboxed.

Essentially the compiler applies autoboxing and -unboxing so that the line is going to look like this:

int test = (something != 0 ? Integer.valueOf(5) : null).intValue();

Indeed, autounboxing null leads to a NullPointerException.

So why the java-compiler doesn't fetch nonsense like this?

Because the designers of the Java language defined the language in such a way that it works like this and didn't decide that this has to be treated as an error...

Section 15.25 of the Java Language Specification explains how the type of the whole expression is determined.

like image 96
Jesper Avatar answered Sep 19 '22 12:09

Jesper