Java stream判斷列表是否包含某幾個元素/重複元素
Java stream判斷列表是否包含某幾個元素
(需求經過修改過)判斷一個profile是否包含PROFILE-IN-A和PROFILE-IN-B且都是Enable=1打勾的.
既然已經JDK8了,那就用lambda
吧,如果是foreach可能比較難處理,用stream
的filter
則可以這樣做.
核心程式碼可以這麼寫
int intCheck = profileServiceDtoList.stream().filter(e ->
"1".equals(e.getEnable())
&&(("PROFILE-IN-MOSHOW".equals(e.getServiceIdentifier()))||("PROFILE-IN-ADC".equals(e.getServiceIdentifier())))
).collect(Collectors.toList()).size();
程式碼SHOW
- 新建三個不同型別的profile,其中兩個是要判斷的,一個是
干擾
的. - 通過
steam
進行filter
,找出是否包含這兩個元素(相當於把要判斷的元素過濾進去) - 判斷list的
size
大小(intCheck>1找到兩個則代表同時出現)
public static void main(String[] args) {
List<ProfileServiceDto> profileServiceDtoList= new ArrayList<>(3);
ProfileServiceDto profileService1 = new ProfileServiceDto();
profileService1.setServiceId(1001L);
profileService1.setServiceIdentifier("PROFILE-IN-MOSHOW");
profileService1.setEnable("1");
profileServiceDtoList.add(profileService1);
ProfileServiceDto profileService2 = new ProfileServiceDto();
profileService2.setServiceId(1002L);
profileService2.setServiceIdentifier("PROFILE-IN-ADC");
profileService2.setEnable("1");
profileServiceDtoList.add(profileService2);
ProfileServiceDto profileService3 = new ProfileServiceDto();
profileService3.setServiceId(1003L);
profileService3.setServiceIdentifier("PROFILE-XXX-ABC");
profileService3.setEnable("1");
profileServiceDtoList.add(profileService3);
int intCheck = profileServiceDtoList.stream().filter(e ->
"1".equals(e.getEnable())&&(("PROFILE-IN-MOSHOW".equals(e.getServiceIdentifier()))||("PROFILE-IN-ADC".equals(e.getServiceIdentifier())))
).collect(Collectors.toList()).size();
System.out.println("intCheck->"+intCheck);
if(intCheck>1){
System.error.println("In one profile, cannot contain two more PROFILE-IN profile.");
}
}
Java stream判斷列表是否包含重複元素
思路是通過一個distinct的list,然後跟原先的list來判斷大小,如果不一致(原先list.size>distinctList.size)則表示有重複元素
//profileServiceDtoList路上,不累贅
//多了一個profileService1.setGroupId("A");profileService1.setGroupId("B");profileService3.setGroupId("A");
List<String> groupList = new ArrayList<>(4);
profileServiceDtoList.stream().forEach(e -> {
if ("Y".equals(e.getEnable()) && StringUtils.isNotEmpty(e.getGroupId())) {
groupList.add(e.getGroupId());
}
});
int distinctGroupSize = groupList.stream().distinct().collect(Collectors.toList()).size();
if (groupList.size() > distinctGroupSize) {
throw new ValidationException("100001","In one profile, the services with the same groupId cannot co-exist.");
}
相關文章
- python中如何判斷list中是否包含某個元素Python
- 如何判斷頁面是否存在某個元素
- JavaScript判斷陣列是否包含指定元素JavaScript陣列
- 判斷元素是否有重疊部分
- js如何判斷頁面中是否存在某個元素JS
- js如何判斷陣列中是否含有某個元素JS陣列
- Array · 判斷某元素是否在陣列中陣列
- python列表中是否存在某個元素Python
- 判斷一個元素是否是另一個元素的子元素或者父元素
- jquery判斷指定元素是否存在於某陣列jQuery陣列
- java判斷集合是否包含某個範圍內的值Java
- jQuery判斷當前元素是第幾個元素jQuery
- 41:判斷元素是否存在
- jQuery如何判斷一個元素是否存在jQuery
- 如何判斷一個元素是否隱藏
- 如何判斷一個元素是否位於另一個元素之中
- Java 判斷JSONObject是否包含含有某個屬性值(key)JavaJSONObject
- 技術乾貨:如何判斷一個整數陣列是否存在重複元素......陣列
- 如何在js中判斷是否包含某個字串JS字串
- 判斷元素是否在視口和元素相交
- js如何判斷陣列具有某個元素JS陣列
- jQuery 判斷元素是否隱藏jQuery
- jQuery如何判斷元素是否存在jQuery
- jQuery如何判斷某一個元素是否存在jQuery
- sql 判斷 某列中是否包含 某種符號SQL符號
- jQuery 判斷頁面元素是否存在jQuery
- javascript如何判斷一個頁面元素是否存在JavaScript
- java 兩個列表的元素是否相等且各自元素數量相等Java
- 如何利用jQuery判斷一個元素是否被隱藏jQuery
- 如何判斷一個元素是否在可視範圍
- 判斷一個類名或者元素是否存在的思路
- 如何判斷一個元素是否在可視區域中?
- 如何利用jQuery判斷指定元素是否存在jQuery
- 判斷DOM元素是否含有子節點
- JavaScript判斷元素是否具有required屬性JavaScriptUI
- JavaScript 判斷元素是否獲得焦點JavaScript
- Javascript 如何判斷物件為空 {},以及是否包含某個屬性?JavaScript物件
- web前端入門到實戰:原生js判斷某個元素是否有指定的class名的幾種方法Web前端JS