- 4
- 0
- 约1.26万字
- 约 42页
- 2016-06-10 发布于湖北
- 举报
public interface MapK,V{ int size(); boolean isEmpty(); boolean containsKey(Object key); boolean containsValue(Object value); V get(Object key); V put(Object key, Object value); V remove(Object key); void putAll( Map? extends K,? extends V t ); void clear(); SetK keySet(); CollectionV values(); SetMap.EntryK,V entrySet(); interface EntryK,V { K getKey(); V getValue(); V setValue( V value); boolean equals(Object o); int hashCode(); } boolean equals(Object o); int hashCode(); } 8. 4 MapK,V接口定义
原创力文档

文档评论(0)