public static void main(String[] args) {
List list = new ArrayList();
list.add(1);
list.add(2);
list.add(4);
list.add(3);
list.forEach(s -> System.out.println(s));
Map map = new HashMap();
map.put("a", 1);
map.put("b", 2);
map.put("c", 3);
map.forEach((key,value) ->System.out.println(key+" = "+value));
}