Hi Ranchers
What exactly does the following method body trying to declare??
public <T> List<T> meth(List<?> l)
{
return new arrayList<
String>();
}
It gives compiler error, but I couldnt understand how this works.
Any help would be greatly appreciated.