Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

what is the difference between HashMap and Hashtable

Answer Posted / brijendra kumar soni(xavient)

1-Hashmap is nonSyncronized whereas Hastable is Syncronized.

2-Hashmap allows both key and values are Null whereas
Hastable doesnot allow Null values.

3-Hasmap belongs to Collection package whereas Hashtable is
a class.

4-The class Hashmap implements the map interface whereas
Hastable implements the class.

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is a Hash Table? What are the advantages of using a hash table?

1088


What is an inner class in java?

970


How to retrieve data from database in java using arraylist?

1059


What is the purpose of the enableevents() method in java programming?

1187


In which language java is written?

984


Draw a UML class diagram for the code fragment given below: public class StringApplet extends Applet { private Label sampleString; private Button showTheString; private ButtonHandler bHandler; private FlowLayout layout; public StringApplet() { sampleString = new Label(" "); showTheString = new Button (" Show the String"); bHandler = new ButtonHandler(); layout = new FlowLayout(); showTheString.addActionListener(bHandler); setLayout(layout); add(sampleString); add(showTheString); } class ButtonHandler implements ActionListener { public void actionPerformed(ActionEvent e) { samplestring.setText("Good Morning"); } } } Note: The methods need not be indicated on the diagram.

2054


What are the ways to instantiate the class class?

1105


Is ruby built on java?

959


What is garbage collection? What is the process that is responsible for doing that in java?

1106


Which is bigger float or double?

975


How many types of gc are there in java?

997


What is the method in java?

1106


What is the difference between final, finally and finalize()?

1156


What do you understand by overloading and overriding in java?

1084


Is namespace same as package in java?

988