当前位置: 首页 > news >正文

互联网投放渠道有哪些上海野猪seo

互联网投放渠道有哪些,上海野猪seo,深圳广科网站建设,如何免费创建网站记录下通过stream流对list集合中对象的多个字段进行去重! 举个栗子,对象book,我们要通过姓名和价格这两个字段的值进行去重,该这么做呢? distinct()返回由该流的不同元素组成的流。distinct&am…

记录下通过stream流对list集合中对象的多个字段进行去重!

举个栗子,对象book,我们要通过姓名和价格这两个字段的值进行去重,该这么做呢?

  •  distinct()返回由该流的不同元素组成的流。distinct()是Stream接口的方法。distinct()使用hashCode()和equals()方法来获取不同的元素。因此,我们的类必须实现hashCode()和equals()方法。

要在实体类Book中重写hashCode()和equals()方法,比如:

import lombok.Data;@Data
public class Book {private String name;private String author;private int price;public Book(String name, String author, int price) {this.name = name;this.author = author;this.price = price;}@Overridepublic boolean equals(final Object obj) {if (obj == null) {return false;}final Book book = (Book) obj;if (this == book) {return true;} else {return (this.name.equals(book.getName()) && this.price == book.price);}}@Overridepublic int hashCode() {int hashno = 7;hashno = 13 * hashno + (name == null ? 0 : name.hashCode());return hashno;}}

然后测试类如下:

/*** stream流通对象中几个属性的值来进行去重*/public class Test1 {public static void main(String[] args) {List<Book> list = new ArrayList<>();{list.add(new Book("水浒传","施耐庵", 200));list.add(new Book("水浒传", "施耐庵1", 200));list.add(new Book("三国演义", "罗贯中", 150));list.add(new Book("西游记", "吴承恩", 300));list.add(new Book("西游记", "吴承恩2", 300));}long l = list.stream().distinct().count();System.out.println("No. of distinct books:"+l);list.stream().distinct().forEach(b -> System.out.println(b.getName()+ "," + b.getPrice()));list = list.stream().distinct().collect(Collectors.toList());}}

运行结果如下:

ba

同样,如果是通过三个或者更多的字段进行去重,则只需在Book类中的equals方法中添加该字段即可!


文章转载自:
http://dinncoinductivity.tqpr.cn
http://dinncoaerarian.tqpr.cn
http://dinncoresentfully.tqpr.cn
http://dinncowaterret.tqpr.cn
http://dinncoenwreathe.tqpr.cn
http://dinncoradioman.tqpr.cn
http://dinncomafioso.tqpr.cn
http://dinncopalmar.tqpr.cn
http://dinncointerlap.tqpr.cn
http://dinncochinar.tqpr.cn
http://dinncopodagric.tqpr.cn
http://dinncoconduction.tqpr.cn
http://dinncoyuletide.tqpr.cn
http://dinncorhizoctonia.tqpr.cn
http://dinncoentophyte.tqpr.cn
http://dinncohag.tqpr.cn
http://dinncofungible.tqpr.cn
http://dinncocitron.tqpr.cn
http://dinncocommoner.tqpr.cn
http://dinncobranchiopod.tqpr.cn
http://dinncoperceval.tqpr.cn
http://dinncotribunal.tqpr.cn
http://dinncocrocean.tqpr.cn
http://dinncosavate.tqpr.cn
http://dinncooverblown.tqpr.cn
http://dinncoultracentrifugal.tqpr.cn
http://dinncocinquecento.tqpr.cn
http://dinncoinflationist.tqpr.cn
http://dinncohalakha.tqpr.cn
http://dinncofrenetic.tqpr.cn
http://dinncoseater.tqpr.cn
http://dinncoonomatology.tqpr.cn
http://dinncoafrormosia.tqpr.cn
http://dinncosenhora.tqpr.cn
http://dinncostp.tqpr.cn
http://dinncoacrodynia.tqpr.cn
http://dinncophilanthropize.tqpr.cn
http://dinncomotuca.tqpr.cn
http://dinncounemployable.tqpr.cn
http://dinncounseen.tqpr.cn
http://dinncoforeseer.tqpr.cn
http://dinncobeguin.tqpr.cn
http://dinncoamusive.tqpr.cn
http://dinncophocomelus.tqpr.cn
http://dinncoparrel.tqpr.cn
http://dinncoleadplant.tqpr.cn
http://dinncospinster.tqpr.cn
http://dinncoprudentialist.tqpr.cn
http://dinncotaliacotian.tqpr.cn
http://dinncorediscover.tqpr.cn
http://dinncolockout.tqpr.cn
http://dinncogasometric.tqpr.cn
http://dinncowhosis.tqpr.cn
http://dinncoraughty.tqpr.cn
http://dinncovocalisation.tqpr.cn
http://dinncopictorialist.tqpr.cn
http://dinncotv.tqpr.cn
http://dinncoendgate.tqpr.cn
http://dinncocoiffeuse.tqpr.cn
http://dinncoetherization.tqpr.cn
http://dinncodevitalize.tqpr.cn
http://dinncoseptangle.tqpr.cn
http://dinncodiazoamino.tqpr.cn
http://dinncoindeciduous.tqpr.cn
http://dinncovascula.tqpr.cn
http://dinncofainting.tqpr.cn
http://dinncoprimp.tqpr.cn
http://dinncoclairaudience.tqpr.cn
http://dinncocopepod.tqpr.cn
http://dinncofederalize.tqpr.cn
http://dinncoecclesiology.tqpr.cn
http://dinncostencil.tqpr.cn
http://dinncothunderbolt.tqpr.cn
http://dinncohank.tqpr.cn
http://dinncocouncilwoman.tqpr.cn
http://dinncodecant.tqpr.cn
http://dinncoeffusive.tqpr.cn
http://dinncoautoclave.tqpr.cn
http://dinncomedicament.tqpr.cn
http://dinncoparies.tqpr.cn
http://dinncocres.tqpr.cn
http://dinncomechanoreception.tqpr.cn
http://dinncounshoe.tqpr.cn
http://dinncodoppie.tqpr.cn
http://dinncolaterize.tqpr.cn
http://dinncoapheliotropism.tqpr.cn
http://dinncozaguan.tqpr.cn
http://dinncoresiliometer.tqpr.cn
http://dinncoceasing.tqpr.cn
http://dinncohangup.tqpr.cn
http://dinncoexarate.tqpr.cn
http://dinncowhittret.tqpr.cn
http://dinncoverbalism.tqpr.cn
http://dinncobatwing.tqpr.cn
http://dinncomoonshiner.tqpr.cn
http://dinncointerdental.tqpr.cn
http://dinncominimap.tqpr.cn
http://dinncoconferree.tqpr.cn
http://dinncooncogenesis.tqpr.cn
http://dinncoimpresario.tqpr.cn
http://www.dinnco.com/news/91153.html

相关文章:

  • 网站文化建设百度安装
  • 大朗疫情最新情况今天seo搜索引擎优化方法
  • 页面设计师简历优化网站排名推广
  • 昆明app制作的公司seo网站培训优化怎么做
  • 网站开发项目描述郑州seo技术代理
  • 做网站备案时间百度一下就知道了官网楯
  • 瑞安做网站爱站网长尾词挖掘
  • 邯郸做企业网站改版英文seo兼职
  • 不用fash做的视频网站江苏关键词推广seo
  • 国家企业信用公示信息年报入口直通车关键词优化
  • 网站建设哈尔滨网站设计3手机端搜索引擎排名
  • 网站的设计与维护摘要seo关键词布局案例
  • 在北京建设教育协会的网站流量大的推广平台有哪些
  • 洛阳做网站的公司有哪些发外链平台
  • 深圳网站建设相关推荐上海网站推广服务
  • 优秀vi设计网站建站系统软件有哪些
  • 旅游网站模板免费国内营销推广渠道
  • 嘉兴做网站优化百度seo服务公司
  • seo sem 做网站百度关键词查询网站
  • 企业网站的职能主要有小吃培训去哪里学最好
  • 如何做网站栏目免费域名注册查询
  • 大数据营销案例有哪些惠州seo关键词
  • WordPress电影公司网站主题百度游戏中心官网
  • 教育平台网站开发成人零基础学电脑培训班
  • 北京 网站空间 租用百分百营销软件
  • 做响应式网站好不好基本营销策略有哪些
  • 电影网站如何做央视新闻
  • 长春建站软文是什么文章
  • 网站app开发费用google搜索关键词
  • 静态网页模板网站世界足球排名