Why does `System.out.println(null);` give "The method println(char[]) is ambiguous for the type PrintStream error"?
Asked Answered
Y

2

23

I am using the code:

System.out.println(null);

It is showing the error:

The method println(char[]) is ambiguous for the type PrintStream

Why doesn't null represent Object?

Yabber answered 31/3, 2016 at 5:58 Comment(3)
System.out.println((Object)null);Lug
Possible duplicate of unable to pass null to execute(); method of AsyncTask in android 4.0Bystander
See also #13033537Bystander
K
28

There are 3 println methods in PrintStream that accept a reference type - println(char x[]), println(String x), println(Object x).

When you pass null, all 3 are applicable. The method overloading rules prefer the method with the most specific argument types, so println(Object x) is not chosen.

Then the compiler can't choose between the first two - println(char x[]) & println(String x) - since String is not more specific than char[] and vice versa.

If you want a specific method to be chosen, cast the null to the required type.

For example :

System.out.println((String)null);
Kind answered 31/3, 2016 at 6:1 Comment(3)
I know and understand this concept. But for sake of the completeness of the answer, does the JLS somewhere specify why, for example, char[] and String are equally specific? After all, char is a primitive and String is an object.Socialization
@Socialization char is a primitive, but char[] is an object. char[] is not a sub-class of String and String is not a sub-class of char[]. Therefore neither one of the two is more specific.Kind
@KannanThangadurai note that you can write char x[] as char[] x - many (e.g. Google's style guide) prefer the latter form because the type of x is char[], not char. Keeping the type together makes it easier to read.Carnap
W
9

If you call System.println(null) there are multiple candidate methods (with char [], String and Object argument) and the compiler can't decide which one to take.

Fix
Add an explicit cast to null.

System.out.println((Object)null);

Or use null object pattern.


Why does't null represent Object?

From JLS 4.1 The Kinds of Types and Values

There is also a special null type, the type of the expression null, which has no name.
Because the null type has no name, it is impossible to declare a variable of the null type or to cast to the null type.
The null reference is the only possible value of an expression of null type. The null reference can always be cast to any reference type.
The null reference can always be assigned or cast to any reference type

In practice, the programmer can ignore the null type and just pretend that null is merely a special literal that can be of any reference type

So the type of null is not Object, though it can be converted to (read-as assigned to) an Object.

Wellfixed answered 31/3, 2016 at 6:2 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.