( Copied from remedy bug 282 as submitted by avh)
This is not allowed:
Object object_array[] = ...;
String string_array[] = (String [])object_array;
The reason why I want this is that I tried adding a toArray() method to
the Vector class which returns an array of objects. The method is
pretty useless because I can't cast the result to an array of a
different (more narrow) type.
This is not allowed:
Object object_array[] = ...;
String string_array[] = (String [])object_array;
The reason why I want this is that I tried adding a toArray() method to
the Vector class which returns an array of objects. The method is
pretty useless because I can't cast the result to an array of a
different (more narrow) type.