- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个这样的哈希表:
Hashtable<String, String> ht = new Hashtable<String, String>();
ht.put("A", "one");
ht.put("B", "two");
然后我调用它的 values()
方法来获取它的值并存储在 像这样的集合对象:
Collection<String> col = ht.values();
现在这个集合对象有这些值:
one, two.
然后我调用了 col.add("three");
这次我得到了这个错误:
Exception in thread "main" java.lang.UnsupportedOperationException.
我检查了 API:
If a collection refuses to add a particular element for any reason other than that it already contains the element, it must throw an exception (rather than returning false)
我添加(“三”)到集合的值是唯一的,不是重复的。但是我可以做其他操作,比如 remove()
和 clear()
操作在上面。
无法调用add()
。为什么不允许添加?
最佳答案
Hashtable中values()方法返回的集合不支持添加新元素。
来自javadocs :
Returns a Collection view of the values contained in this Hashtable. The Collection is backed by the Hashtable, so changes to the Hashtable are reflected in the Collection, and vice-versa. The Collection supports element removal (which removes the corresponding entry from the Hashtable), but not element addition.
关于java - 如何为 Collection 增值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10892723/
value = a[0]; 在 Java 脚本中可以这样做吗? 最佳答案 没有。这是正确的: a[0] = value; 因为赋值运算符具有从右到左的结合性。 检查this link用于运算符优先级表
我有一个这样的哈希表: Hashtable ht = new Hashtable(); ht.put("A", "one"); ht.put("B", "two"); 然后我调用它的 values
当用户在输入框中键入内容时,我希望他们的名字显示在文本“hello”之后。与此相反,“hello”一词被删除并替换为他们的名字。 var name = document.getElementById(
我从这些地址开始 www.example.com/nav/Default.aspx www.example.com/nav/Fruit/Apple.aspx 我想要的是隐藏地址中的 nav 和 asp
是否可以将整数添加到作用域变量中? 例如 .... 如果顶部是 140,它应该给我 "280px" 而不是 "140140px" 这可能吗? 最佳答案 并不是我认为这是最好的方法,但您可以尝试: .
这是我的 fiddle : http://jsfiddle.net/JWww3/ 我不确定为什么这段代码不起作用。 当我单击“+1”按钮时,我想向“ajout”变量添加+1。如果 ajout = 5(
我正在尝试更新/创建一个新的数据集并将先前的值与新的值相结合。 这就是我的 Python 脚本现在的样子。 dailyDataset = { "pId" : pub, "oId" :
这是我的 Firebase 键值图像 这是我的代码: Query query = myFirebaseRef.orderByChild("age"); query.addListene
我是一名优秀的程序员,十分优秀!