Java,使用Iterator搜索ArrayList并删除匹配的对象
基本上,用户提交一个字符串,迭代器在 ArrayList 中搜索该字符串。当找到时,迭代器将删除包含字符串的对象。
因为每个对象都包含两个字符串,所以我在将这些行写为一个字符串时遇到麻烦。
Friend current = it.next();
String currently = current.getFriendCaption();
感谢您的帮助!
Basically, the user submits a String which the Iterator searches an ArrayList for. When found the Iterator will delete the object containing the String.
Because each of these objects contain two Strings, I am finding trouble writing these lines as one.
Friend current = it.next();
String currently = current.getFriendCaption();
Thanks for any help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不需要将它们放在一行中,只需使用
remove
来删除匹配的项目:完整演示:
输出:
You don't need them on one line, just use
remove
to remove an item when it matches:Full demo:
Output: