This is kind of a follow up question on the discussion:
Why doesn't the diamond operator work within a addAll() call in Java 7?
From the Java Tutorial,
http://docs.oracle.com/javase/tutorial/java/generics/gentypeinference.html
Note that the diamond often works in method calls; however, for greater clarity, it is suggested that you use the diamond primarily to initialize a variable where it is declared
So, I am a bit confused about the first line. When does diamond work in method calls?
A bit more explanation on how diamond operator works can be found here:
And from this, I have tried the following, which works fine:
Give that I have:
private static class Box<T>{
public Box(T t){}
}
static void f(Box<Integer> box){}
a call like the following compiles fine:
f(new Box<>(new Integer(10)));
The type parameter in invoking the constructor in the method call of f() above is inferred from the argument to the constructor (i.e. Integer).
So is this what is meant when the tutorial says
Note that the diamond often works in method calls
If not, can anyone kind enough to provide an example where diamond works in method call?