Buenas, quería preguntarles ya que estoy aprendiendo java con libros y hay algunas cosas que no me quedan claras, además de que una no me funciona ..
Los Hashtables ...
Código:
public static void main(String[] args) {
Hashtable h = new Hashtable();
Enumeration e = h.keys();
h.put("a12", "pepito");
h.put("a13", "juan");
h.put("a14", "nena");
String clave,valor;
System.out.println("hola");
while(e.hasMoreElements())
{
clave = (String)e.nextElement();
valor = (String)h.get(clave);
System.out.println(valor);
}
}
No me ejecuta el While, no se porqué, agradecería mucho su ayuda.