ArrayList<Object> list = new ArrayList<Object>();
list.add(1);
list.add("Java");
list.add(3.14);
System.out.println(list.toString());
I tried:
ArrayList<String> list2 = (String)list;
But gave me a compile Error.
feedback
|
|
Since this is actually not a list of strings, the easiest way is to loop over it and convert each item into a new list of strings yourself.
Note that you should be declaring against the interface ( | |||||||
feedback
|
|
It's not safe to do that!
It wouldn't make sense to convert the list of those Objects to any type. | ||||
feedback
|
|
Using guava:
| |||
|
feedback
|
|
Your code | |||
|
feedback
|