java 는 list 에 어떤 값 이 포함 되 어 있 는 지 판단 합 니 다.

1015 단어 Java
contains 방법 은 목록 에 지정 한 요소 가 포함 되 어 있 는 지 판단 하 는 데 사 용 됩 니 다.목록 에 지정 한 요소 가 포함 되 어 있 으 면 true 로 돌아 갑 니 다. 그렇지 않 으 면 false 로 돌아 갑 니 다.
문법:  contains(Object o);
o: 목록 에 존재 하 는 요 소 를 판단 해 야 합 니 다.
구체 적 인 사용 예: list 데 이 터 를 옮 겨 다 니 며 시간 이 같은 데 이 터 를 걸 러 냅 니 다.
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());
}

좋은 웹페이지 즐겨찾기