image.png

验证HashMap无序

  1. public class MyMap {
  2. @Test
  3. public void test1(){
  4. Map map = new HashMap();
  5. map.put(1, "no 1");
  6. map.put(3, "no 3");
  7. map.put(6, "no 6");
  8. map.put(4, "no 4");
  9. map.put(5, "no 5");
  10. for (Object e : map.entrySet()) {
  11. Map.Entry e1 = (Map.Entry) e;
  12. System.out.println(e1.getValue());
  13. }
  14. }
  15. }
  16. /* 输出结果
  17. no 1
  18. no 3
  19. no 4
  20. no 5
  21. no 6
  22. */