Java - List, ArrayList

1
2
3
4
5
List list = new ArrayList();
 
// add object to the list
String s = "Hello World!";
list.add(s);