火车浏览器官方论坛

 找回密码
 立即注册
查看: 2608|回复: 0
打印 上一主题 下一主题

如何批量删除Alist包含的Blist的数据

[复制链接]

9

主题

13

帖子

730

积分

高级会员

Rank: 4

积分
730
跳转到指定楼层
楼主
发表于 2020-10-26 18:06:20 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
本帖最后由 holilz 于 2020-10-26 19:07 编辑

如何批量删除Alist包含的Blist的数据
如:alist里有A、B、C,Blist里有A,B
怎么在alist只保留C。
  1. 去掉一个list中包含的另一个list数据,高效写法
  2. LinkedList<Question> veirfyingList = questionService.getVeirfying(cityCode);
  3.             LinkedList<Question> verifiedList = questionService.getVerifiedQuestion(uid, cityCode);
  4.             HashSet h1 = new HashSet(veirfyingList);
  5.             HashSet h2 = new HashSet(verifiedList);
  6.             h1.removeAll(h2);
  7.             veirfyingList.clear();
  8.             veirfyingList.addAll(h1)
复制代码
谁帮忙转成火车头里的c#插件
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|Archiver|手机版|小黑屋|火车浏览器  

GMT+8, 2024-11-23 09:10 , Processed in 0.064189 second(s), 23 queries .

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表