java怎么判断list是否包含指定值

作者:Leah

这篇文章将为大家详细讲解有关java判断list是否包含指定值的方法,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。

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());
}

关于java判断list是否包含指定值的方法就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。