“java hashtable” Código de respuesta

Impresión de hashtable en Java

table.forEach( 
            (k, v) -> System.out.println("Key : " + k + ", Value : " + v)); 
Lonely Lark

java hashtable

import java.util.*;  
class Hashtable1{  
 public static void main(String args[]){  
  Hashtable<Integer,String> hm=new Hashtable<Integer,String>();  
  
  hm.put(100,"Amit");  
  hm.put(102,"Ravi");  
  hm.put(101,"Vijay");  
  hm.put(103,"Rahul");  
  
  for(Map.Entry m:hm.entrySet()){  
   System.out.println(m.getKey()+" "+m.getValue());  
  }  
 }  
}  
elcharitas

Respuestas similares a “java hashtable”

Preguntas similares a “java hashtable”

Más respuestas relacionadas con “java hashtable” en Java

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código