What is Map interface?

Answers were Sorted based on User's Feedback



What is Map interface?..

Answer / ravikiran(aptech mumbai)

Map interface provides classes and interfaces to do
operations with objects saved as key value pairs

Is This Answer Correct ?    4 Yes 0 No

What is Map interface?..

Answer / guest

Java Collection Framework - Map Interface

The Map interface is not an extension of Collection
interface. Instead the interface starts of it?s own
interface hierarchy, for maintaining key-value associations.
The interface describes a mapping from keys to values,
without duplicate keys, by defination.
The Map interface follows.

public interface Map<K,V> {

// Basic operations
V put(K key, V value);
V get(Object key);
V remove(Object key);
boolean containsKey(Object key);
boolean containsValue(Object value);
int size();
boolean isEmpty();

// Bulk operations
void putAll(Map<? extends K, ? extends V> m);
void clear();

// Collection Views
public Set<K> keySet();
public Collection<V> values();
public Set<Map.Entry<K,V>> entrySet();

// Interface for entrySet elements
public interface Entry {
K getKey();
V getValue();
V setValue(V value);
}
}

Is This Answer Correct ?    2 Yes 1 No

What is Map interface?..

Answer / sushila

map is not a collection type but it is part of collection API

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More Core Java Interview Questions

In a container there are 5 components. I want to display all the component names, how will you do that?

0 Answers  


When a thread is executing synchronized methods , then is it possible to execute other synchronized methods simultaneously by other threads?

0 Answers  


What is the difference between jvm and jre? What is an interface?

0 Answers  


How can I become a good programmer?

0 Answers  


How can you read an integer value from the keyword when the application is runtime in java? example?

0 Answers   HCL,






Using callable statement how can you pass out parameters, explain with example?

0 Answers  


Can u write constructor in abstract.If yes den when it will be invoked.

4 Answers   SunGard,


What is e java?

0 Answers  


What is string intern in java?

0 Answers  


What is the purpose of methodology?

0 Answers  


What is a singleton puppy?

0 Answers  


What is a vector in java?

0 Answers  


Categories