In java i m not able to add a list to a hashset using hash set addAll method
List a = new ArrayList();
a.add(20);
List b = new ArrayList();
b.add(30);
Set set = new HashSet ( a );
set.addAll( b);
Please help
Thanks
|
In java i m not able to add a list to a hashset using hash set addAll method
Please help Thanks |
|||
|
It works for me. See it working online: ideone. One thing though - it would be better to use the generic versions of the collections. This removes the warnings.
See it online: ideone. |
|||
|
|
deletebutton above. – Péter Török Feb 14 '11 at 22:22