java list.contains是什么,讓我們一起了解一下?
contains就是查看給定元素是否在list中存在,經常用于去除重復記錄,從數據庫中查詢出滿足一系列條件的記錄,然后以對象的形式封裝到List中去。
java List contains()用法及代碼示例:
Java中的List接口的contains()方法用于檢查指定元素是否存在于給定列表中。
//?Java?code?to?demonstrate?the?working?of //?contains()?method?in?List?interface import?java.util.*; class?GFG?{undefined public?static?void?main(String[]?args) {undefined //?creating?an?Empty?Integer?List List?arr?=?new?ArrayList(4); //?using?add()?to?initialize?values //?[1,?2,?3,?4] arr.add(1); arr.add(2); arr.add(3); arr.add(4); //?use?contains()?to?check?if?the?element //?2?exits?or?not boolean?ans?=?arr.contains(2); if?(ans) System.out.println("The?list?contains?2"); else System.out.println("The?list?does?not?contains?2"); //?use?contains()?to?check?if?the?element //?5?exits?or?not ans?=?arr.contains(5); if?(ans) System.out.println("The?list?contains?5"); else System.out.println("The?list?does?not?contains?5"); } }
實戰操作:假設有兩個條件A和B,滿足A記錄的稱為ListA,滿足B記錄的稱為ListB,現在要將ListA和ListB合并到一個List中區,此時兩個記錄集中可能會含有相同的記錄,所以我們要過濾掉重復的記錄。
假設存在的對象為User對象:
List?list?=?new?ArrayList(); if(ListA!=null){undefined Iterator?it=?ListA.iterator(); while(it.hasNext()){undefined list.add((User)it.next()); } } if(ListB!=null){undefined Iterator?it=?ListB.iterator(); while(it.hasNext()){undefined User?us=(User)it.next(); if(!list.contains(us)) list.add(us); } }
首先我們將ListA中的對象全部裝入到list中,然后在裝入ListB中對象的時候對ListB中的每個元素進行一下判斷,看list中是否已存在該元素,這里我們使用List接口的contains()方法。
下面來看一下他的原理:list.contains(us),系統會對list中的每個元素e調用us.equals(e),方法,加入list中有n個元素,那么會調用n次us.equals(e),只要有一次us.equals(e)返回了true,那么list.contains(us)返回true,否則返回false。
以上就是小編今天的分享了,希望可以幫助到大家。