{{theTime}}

Search This Blog

Total Pageviews

How to iterate HashMap without any generics


public static void printMap(HashMap mp) {
   Iterator it = mp.entrySet().iterator();
   while (it.hasNext()) {
       Map.Entry pairs = (Map.Entry)it.next();
       String values = pairs.getKey() + " = " + pairs.getValue() ;
       System.out.println(values);
       logger.info(values) ;
       it.remove();
   }
}

No comments:

Optimizing Java Applications for Low-Latency Microservices

Introduction Microservices architecture has become a go-to for building scalable, modular systems, but achieving low latency in Java-based...