火车浏览器官方论坛

标题: 如何批量删除Alist包含的Blist的数据 [打印本页]

作者: holilz    时间: 2020-10-26 18:06
标题: 如何批量删除Alist包含的Blist的数据
本帖最后由 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#插件





欢迎光临 火车浏览器官方论坛 (http://bbs.locoyposter.com/) Powered by Discuz! X3.2