题目内容

下列选项中,不属于TreeMap类的方法的是( )

A. firstKey()
B. isEmpty()
C. lowerEntry(K key)
D. higherKey(K key)

查看答案
更多问题

阅读下段代码import java.util.Enumeration;import java.util.Properties;public class Demo { public static void main(String[] args) {Properties p = new Properties();p.setProperty("userame", "tom");Enumeration names = p.propertyNames();while (names.hasMoreElements()) {String key = (String) names.nextElement();String value = p.getProperty(key);System.out.println(key + " = " + value);} }}下列选项中,哪一个是程序执行后的结果( )

A. key = tom
B. username = tom
C. username tom
D. 编译失败

Hashtable类有一个子类【】,主要用来存储字符串类型的键和值。

向【】集合中添加一个对象时,首先会调用该对象的hashCode()方法来确定元素的存储位置,然后再调用对象的equals()方法来确保该位置中没有重复元素。

如果要对TreeSet集合中的对象进行排序,必须实现了【】接口

答案查题题库