【发布时间】:2015-02-09 23:11:36
【问题描述】:
如何实现:
比较集合中的一个元素(不知道索引,所以可以使用包含/等于来比较字符串值),检查是否存在然后必须向该字符串值添加一些字符(将从其他地方获取) 然后将其添加回集合中作为最后一个元素。
示例场景:
xyz<Collection> contains these values:
"abc"
"hgj"
"jsh"
"yjk"
if (xyz.contains("jsh")){
then concat "jsh" + " " + randomOtherStuff
And put it back in the collection to be last element so when printed the order is
"abc"
"hgj"
"yjk"
"jsh + " " + randomOtherStuff"
}
提前感谢您的所有帮助:D
【问题讨论】:
-
你有什么尝试吗?
-
Collections.binarySearch(xyz, "jsh") 将返回索引。
标签: java jakarta-ee arraylist collections