Answer Posted / 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 |
Post New Answer View All Answers
What is object data type?
What is a method type?
What is meant by tab pans?
Can we print null in java?
What is bean? Where it can be used?
What is mean by encoding?
What is array initialization in java?
How does indexof work?
How do you join strings in java?
What about static nested classes in java?
Is string is a data type?
Can you instantiate the math class?
What is a function in programming?
Is .net better than java?
How does hashset works in java?