contains 메소드는 지정된 요소가 목록에 포함되어 있는지 확인하는 데 사용됩니다. 지정된 요소가 목록에 포함되어 있으면 true를 반환하고, 그렇지 않으면 false를 반환합니다.
구문:
contains(Object o);
o: 요소가 목록에 존재하는지 확인합니다.
구체적인 사용 예: 목록 데이터를 탐색하고 동시에 데이터를 필터링합니다
try { List list = new ArrayList(); List equipmentLocationList = locationService.getUserTrajectoryList(); List list2 = new ArrayList(); for (Location location : equipmentLocationList) { // 过滤时间相同的数据 if (list2.contains(location.getDeviceTime().getTime())) { continue; } EcgUser user = new EcgUser(); user.setLatitude(location.getLatitude()); user.setLongitude(location.getLongitude()); list.add(user); list2.add(location.getDeviceTime().getTime()); } System.out.println(list2); return getResponse(list); } catch (Exception e) { logger.error("", e); return getResponse(ErrorCodeConstant.FAIL.getCode()); }
추천 튜토리얼: Java 튜토리얼
위 내용은 Java는 목록에 특정 값이 포함되어 있는지 확인합니다.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!