Skip to content
Advertisement

List to ArrayList conversion issue

I have a following method…which actually takes the list of sentences and splits each sentence into words. Here is it:

JavaScript

I have to pass this list into a hashmap in a following format

JavaScript

so this method returns List and I need a arrayList? If I try to cast it doesn’t workout… any suggestions?

Also, if I change the ArrayList to List in a HashMap, I get

JavaScript

because of this line in my code

JavaScript

Any better suggestions?

Advertisement

Answer

First of all, why is the map a HashMap<String, ArrayList<String>> and not a HashMap<String, List<String>>? Is there some reason why the value must be a specific implementation of interface List (ArrayList in this case)?

Arrays.asList does not return a java.util.ArrayList, so you can’t assign the return value of Arrays.asList to a variable of type ArrayList.

Instead of:

JavaScript

Try this:

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement