fork download
  1. import java.util.*;
  2.  
  3. class Ideone
  4. {
  5. public static void main (String[] args) throws java.lang.Exception
  6. {
  7. Map<String, String> m = new HashMap<String, String>();
  8. Collection<String> c = m.values();
  9. m.put("hi", "there");
  10. System.out.println(c.size()); // 1, not 0
  11. }
  12. }
Success #stdin #stdout 0.11s 320576KB
stdin
Standard input is empty
stdout
1