“Hashtable Java” Code-Antworten

Drucken Hashtable in Java

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

Hashtable Java

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

Ähnliche Antworten wie “Hashtable Java”

Fragen ähnlich wie “Hashtable Java”

Weitere verwandte Antworten zu “Hashtable Java” auf Java

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen