网友您好, 请在下方输入框内输入要搜索的题目:
题目内容
(请给出正确答案)
多选题
有关hashMap跟hashTable的区别,说法正确的是()。
A
HashMap和Hashtable都实现了Map接口
B
HashMap是非synchronized,而Hashtable是synchronized
C
HashTable使用Enumeration,HashMap使用Iterator
D
Hashtable直接使用对象的hashCode,HashMap重新计算hash值,而且用与代替求模
参考答案
参考解析
解析:
暂无解析
更多 “多选题有关hashMap跟hashTable的区别,说法正确的是()。AHashMap和Hashtable都实现了Map接口BHashMap是非synchronized,而Hashtable是synchronizedCHashTable使用Enumeration,HashMap使用IteratorDHashtable直接使用对象的hashCode,HashMap重新计算hash值,而且用与代替求模” 相关考题
考题
HashMap和Hashtable正确的说法有()
A.都属于Map接口的类B.Hashtable类不是同步的,HashMap类是同步的C.Hashtable类不允许null键和null值D.HashMap类允许null键和null值
考题
Hashtable,HashMap,ConcurrentHashMap都是Map的实现类,它们在处理null值的存储上有细微的区别,下列哪些说法是正确的:
A.Hashtable的KV都不可以为nullB.HashMap的KV都可以为nullC.HashMap的K不可以为null,V可以为nullD.ConcurrentHashMap的KV都不可以为null
考题
如果HashMap发生大量Hash冲突,则会导致()A、HashMap崩溃,导致不可用B、HashMap没有影响,依然可以高效的工作C、HashMap的性能会有一点影响,但总体依然是高效的D、HashMap依然可用,但是性能受到重创
考题
下列哪个说法是正确的:()。A、ConcurrentHashMap使用synchronized关键字保证线程安全B、HashMap实现了Collection接口C、Arrays.asList方法返回java.uti.ArrayList对象D、SimpleDateFormat对象是线程不安全的
考题
public class Person { private name; public Person(String name) { this.name = name; } public int hashCode() { return 420; } } Which is true?() A、 The time to find the value from HashMap with a Person key depends on the size of the map.B、 Deleting a Person key from a HashMap will delete all map entries for all keys of typePerson.C、 Inserting a second Person object into a HashSet will cause the first Person object to beremoved as a duplicate.D、 The time to determine whether a Person object is contained in a HashSet is constant and does NOT depend on the size of the map.
考题
HashMap和Hashtable正确的说法有() A、都属于Map接口的类B、Hashtable 类不是同步的,HashMap类是同步的C、Hashtable 类不允许 null 键和 null 值D、HashMap 类允许null 键和null 值
考题
线程安全的map在JDK 1.5及其更高版本环境有哪几种方法可以实现()。A、Map map = new HashMap()B、Map map = new TreeMap()C、Map map = new ConcurrentHashMap()D、Map map = Collections.synchronizedMap(new HashMap())
考题
java.util.HashTable可以实现的接口是()。A、Java.util.HashablE.B、Java.util.List.C、Java.util.Map.D、Java.util.Collection.
考题
在Java中,关于HashMap类的描述,以下错误的是()。A、HashMap使用键/值得形式保存数据B、HashMap 能够保证其中元素的顺序C、HashMap允许将null用作键D、HashMap允许将null用作值
考题
有关hashMap跟hashTable的区别,说法正确的是()。A、HashMap和Hashtable都实现了Map接口B、HashMap是非synchronized,而Hashtable是synchronizedC、HashTable使用Enumeration,HashMap使用IteratorD、Hashtable直接使用对象的hashCode,HashMap重新计算hash值,而且用与代替求模
考题
HashMap和HashTable的描述,错误的是()。A、他们都实现了Map接口B、HashMap非线程安全,在多个线程访问Hashtable时,不需要自己为它的方法实现同步,而HashMap就必须为之提供额外同步。C、HashMap允许将null作为一个entry的key或者value,而Hashtable不允许D、通过contains方法可以判断一个对象是否存在于HashMap或者Hashtable中
考题
1. import java.util.*; 2. 3. Class FindStuff { 4. public static void main(String [] args) { 5. // insert code here 6. c.put("x", 123); 7. } 8. } 分别插入到第5行,哪三行允许代码编译?() A、Map c = new SortedMap();B、HashMap c = new HashMap();C、HashMap c = new Hashtable();D、SortedMap c = new TreeMap();
考题
单选题java.util.HashTable可以实现的接口是()。A
Java.util.HashablE.B
Java.util.List.C
Java.util.Map.D
Java.util.Collection.
考题
多选题1. import java.util.*; 2. 3. Class FindStuff { 4. public static void main(String [] args) { 5. // insert code here 6. c.put("x", 123); 7. } 8. } 分别插入到第5行,哪三行允许代码编译?()AMap c = new SortedMap();BHashMap c = new HashMap();CHashMap c = new Hashtable();DSortedMap c = new TreeMap();
考题
多选题有关hashMap跟hashTable的区别,说法正确的是()。AHashMap和Hashtable都实现了Map接口BHashMap是非synchronized,而Hashtable是synchronizedCHashTable使用Enumeration,HashMap使用IteratorDHashtable直接使用对象的hashCode,HashMap重新计算hash值,而且用与代替求模
考题
多选题HashMap和Hashtable正确的说法有()A都属于Map接口的类BHashtable 类不是同步的,HashMap类是同步的CHashtable 类不允许 null 键和 null 值DHashMap 类允许null 键和null 值
考题
单选题如果HashMap发生大量Hash冲突,则会导致()A
HashMap崩溃,导致不可用B
HashMap没有影响,依然可以高效的工作C
HashMap的性能会有一点影响,但总体依然是高效的D
HashMap依然可用,但是性能受到重创
考题
( 难度:中等)以下关于集合类ArrayList、LinkedList、HashMap描述正确的是()A.A:HashMap实现Map接口,它允许任何类型的键和值对象,并允许将null用作键或值B.B:ArrayList和LinkedList均实现了List接口C.C:添加和删除元素时,ArrayList的表现更佳D.D:ArrayList的访问速度比LinkedList快
热门标签
最新试卷