Map is Interface and Hashmap is class that implements that.
[Source: JAGAN MOHAN "Interview questions bible"]
Search results for java, serialize, object,all
What is HashMap and Map?
Posted by Devin
Pass By Reference means the passing the address itself rather than passing the value. Passby Value means passing a copy of the value to be passed.
[ ...
Explain different way of using thread?
Posted by Devin
The thread could be implemented by using runnable interface or by inheriting from the Thread class. The former is more advantageous, 'cause when you a ...
The purpose of garbage collection is to identify and discard objects that are no longer needed by a program so that their resources can be reclaimed a ...
An abstract class can have instance methods that implement a default behavior. An Interface can only declare constants and instance methods, but canno ...
