I tried to do this
ArrayList<String> a=new ArrayList<String>(2);
a.add("dss");
a.add("dsfs");
a.add("fsfs");
Though i have specified a limit of 2 on the collection, i am able to add more. If this is general about Collections, is there any Collection which sets a limit and strictly follows it ?