真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

List集合中怎么實現(xiàn)復雜字段判斷去重

今天就跟大家聊聊有關(guān)List集合中怎么實現(xiàn)復雜字段判斷去重,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。

專注于為中小企業(yè)提供網(wǎng)站制作、做網(wǎng)站服務,電腦端+手機端+微信端的三站合一,更高效的管理,為中小企業(yè)陽明免費做網(wǎng)站提供優(yōu)質(zhì)的服務。我們立足成都,凝聚了一批互聯(lián)網(wǎng)行業(yè)人才,有力地推動了超過千家企業(yè)的穩(wěn)健成長,幫助中小企業(yè)通過網(wǎng)站建設實現(xiàn)規(guī)模擴充和轉(zhuǎn)變。

List去重復,我們首先想到的可能是 利用List轉(zhuǎn)Set集合,因為Set集合不允許重復。所以達到這個目的。 如果集合里面是簡單對象,例如Integer、String等等,這種可以使用這樣的方式去重復。但是如果是復雜對象,即我們自己封裝的對象。用List轉(zhuǎn)Set 卻達不到去重復的目的。 所以,回歸根本。 判斷Object對象是否一樣,我們用的是其equals方法。 所以我們只需要重寫equals方法,就可以達到判斷對象是否重復的目的。

話不多說,上代碼:

package com.test;
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import org.apache.commons.collections.CollectionUtils;
public class TestCollection {
 //去重復之前集合
 private static List list = Arrays.asList(
  new User("張三", BigDecimal.valueOf(35.6), 18),
  new User("李四", BigDecimal.valueOf(85), 30),
  new User("趙六", BigDecimal.valueOf(66.55), 25),
  new User("趙六", BigDecimal.valueOf(66.55), 25),
  new User("張三", BigDecimal.valueOf(35.6), 18));
 public static void main(String[] args) {
 //排除重復
 getNoRepeatList(list);
 
 }
 /**
 * 去除List內(nèi)復雜字段重復對象
 * @param oldList
 * @return
 */
 private static List getNoRepeatList(List oldList){
 List list = new ArrayList<>();
 if(CollectionUtils.isNotEmpty(oldList)){
  for (User user : oldList) {
  //list去重復,內(nèi)部重寫equals
  if(!list.contains(user)){
   list.add(user);
  }
  }
 }
 //輸出新集合
 System.out.println("去除重復后新集合:");
 if(CollectionUtils.isNotEmpty(list)){
  for (User user : list) {
  System.out.println(user.toString());
  }
 }
 return list; 
 } 
 static class User{
 private String userName; //姓名
 private BigDecimal score;//分數(shù)
 private Integer age;
 public String getUserName() {
  return userName;
 }
 public void setUserName(String userName) {
  this.userName = userName;
 }
 public BigDecimal getScore() {
  return score;
 }
 public void setScore(BigDecimal score) {
  this.score = score;
 }
 public Integer getAge() {
  return age;
 }
 public void setAge(Integer age) {
  this.age = age;
 }
 public User(String userName, BigDecimal score, Integer age) {
  super();
  this.userName = userName;
  this.score = score;
  this.age = age;
 }
 public User() {
  // TODO Auto-generated constructor stub
 }
 @Override
 public String toString() {
  // TODO Auto-generated method stub
  return "姓名:"+ this.userName + ",年齡:" + this.age + ",分數(shù):" + this.score;
 }
 /**
  * 重寫equals,用于比較對象屬性是否包含
  */
 public boolean equals(Object obj) { 
     if (obj == null) { 
       return false; 
     } 
     if (this == obj) { 
       return true; 
     } 
     User user = (User) obj; 
     //多重邏輯處理,去除年齡、姓名相同的記錄
     if (this.getAge() .compareTo(user.getAge())==0
      && this.getUserName().equals(user.getUserName())
      && this.getScore().compareTo(user.getScore())==0) { 
       return true; 
     } 
     return false; 
   } 
 }
}

執(zhí)行結(jié)果:

去除重復后新集合:
姓名:張三,年齡:18,分數(shù):35.6
姓名:李四,年齡:30,分數(shù):85
姓名:趙六,年齡:25,分數(shù):66.55

看完上述內(nèi)容,你們對List集合中怎么實現(xiàn)復雜字段判斷去重有進一步的了解嗎?如果還想了解更多知識或者相關(guān)內(nèi)容,請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝大家的支持。


本文名稱:List集合中怎么實現(xiàn)復雜字段判斷去重
網(wǎng)站網(wǎng)址:http://weahome.cn/article/gehecs.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部