|
|
|
|
|
by ardit33
3233 days ago
|
|
Java is notorious as it has very clumsy syntax. Simple arraylist of dictionaries declaration looks like this: ArrayList<Map<String,Object>> myArrayList = new ArrayList<Map<String,Object>>(); Could have been just: ArrayList<Map<String,Object>> myArrayList = new(); or even better: ArrayList<Map> = new(); <- if you don't care what the type of map is. |
|
> if you don't care what the type of map is
You can use raw types, it works perfectly fine (just generates a compiler warning). For explicitly being unspecific, you can also use a type wildcard (`?`).