这篇文章将为大家详细讲解有关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是否包含指定值的方法就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。
亿速云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。